| 1 |
# Copyright 1999-2005 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.75 2006/09/05 23:40:42 dberkholz Exp $
|
| 4 |
#
|
| 5 |
# Author: Donnie Berkholz <spyderous@gentoo.org>
|
| 6 |
#
|
| 7 |
# This eclass is designed to reduce code duplication in the modularized X11
|
| 8 |
# ebuilds.
|
| 9 |
#
|
| 10 |
# Using this eclass:
|
| 11 |
#
|
| 12 |
# Inherit it. If you need to run autoreconf for any reason (e.g., your patches
|
| 13 |
# apply to the autotools files rather than configure), set SNAPSHOT="yes". Set
|
| 14 |
# CONFIGURE_OPTIONS to everything you want to pass to the configure script.
|
| 15 |
#
|
| 16 |
# If you have any patches to apply, set PATCHES to their locations and epatch
|
| 17 |
# will apply them. It also handles epatch-style bulk patches, if you know how to
|
| 18 |
# use them and set the correct variables. If you don't, read eutils.eclass.
|
| 19 |
#
|
| 20 |
# If you're creating a font package and the suffix of PN is not equal to the
|
| 21 |
# subdirectory of /usr/share/fonts/ it should install into, set FONT_DIR to that
|
| 22 |
# directory or directories.
|
| 23 |
#
|
| 24 |
# IMPORTANT: Both SNAPSHOT and FONT_DIR must be set _before_ the inherit.
|
| 25 |
#
|
| 26 |
# Pretty much everything else should be automatic.
|
| 27 |
|
| 28 |
EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm
|
| 29 |
|
| 30 |
inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools
|
| 31 |
|
| 32 |
# Directory prefix to use for everything
|
| 33 |
XDIR="/usr"
|
| 34 |
|
| 35 |
# Set up default patchset version(s) if necessary
|
| 36 |
# x11-driver-patches
|
| 37 |
if [[ -z "${XDPVER}" ]]; then
|
| 38 |
XDPVER="1"
|
| 39 |
fi
|
| 40 |
|
| 41 |
IUSE=""
|
| 42 |
HOMEPAGE="http://xorg.freedesktop.org/"
|
| 43 |
|
| 44 |
# Set up SRC_URI for individual modular releases
|
| 45 |
BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual"
|
| 46 |
if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then
|
| 47 |
SRC_URI="${SRC_URI}
|
| 48 |
${BASE_INDIVIDUAL_URI}/app/${P}.tar.bz2"
|
| 49 |
elif [[ ${CATEGORY} = app-doc ]]; then
|
| 50 |
SRC_URI="${SRC_URI}
|
| 51 |
${BASE_INDIVIDUAL_URI}/doc/${P}.tar.bz2"
|
| 52 |
# x11-misc contains data and util, x11-themes contains data
|
| 53 |
elif [[ ${CATEGORY} = x11-misc ]] || [[ ${CATEGORY} = x11-themes ]]; then
|
| 54 |
SRC_URI="${SRC_URI}
|
| 55 |
${BASE_INDIVIDUAL_URI}/data/${P}.tar.bz2
|
| 56 |
${BASE_INDIVIDUAL_URI}/util/${P}.tar.bz2"
|
| 57 |
elif [[ ${CATEGORY} = x11-drivers ]]; then
|
| 58 |
SRC_URI="${SRC_URI}
|
| 59 |
${BASE_INDIVIDUAL_URI}/driver/${P}.tar.bz2"
|
| 60 |
elif [[ ${CATEGORY} = media-fonts ]]; then
|
| 61 |
SRC_URI="${SRC_URI}
|
| 62 |
${BASE_INDIVIDUAL_URI}/font/${P}.tar.bz2"
|
| 63 |
elif [[ ${CATEGORY} = x11-libs ]]; then
|
| 64 |
SRC_URI="${SRC_URI}
|
| 65 |
${BASE_INDIVIDUAL_URI}/lib/${P}.tar.bz2"
|
| 66 |
elif [[ ${CATEGORY} = x11-proto ]]; then
|
| 67 |
SRC_URI="${SRC_URI}
|
| 68 |
${BASE_INDIVIDUAL_URI}/proto/${P}.tar.bz2"
|
| 69 |
elif [[ ${CATEGORY} = x11-base ]]; then
|
| 70 |
SRC_URI="${SRC_URI}
|
| 71 |
${BASE_INDIVIDUAL_URI}/xserver/${P}.tar.bz2"
|
| 72 |
fi
|
| 73 |
|
| 74 |
SLOT="0"
|
| 75 |
|
| 76 |
# Set the license for the package. This can be overridden by setting
|
| 77 |
# LICENSE after the inherit.
|
| 78 |
LICENSE=${PN}
|
| 79 |
|
| 80 |
# Set up shared dependencies
|
| 81 |
if [[ -n "${SNAPSHOT}" ]]; then
|
| 82 |
# FIXME: What's the minimal libtool version supporting arbitrary versioning?
|
| 83 |
DEPEND="${DEPEND}
|
| 84 |
>=sys-devel/autoconf-2.57
|
| 85 |
>=sys-devel/automake-1.7
|
| 86 |
>=sys-devel/libtool-1.5
|
| 87 |
>=sys-devel/m4-1.4"
|
| 88 |
fi
|
| 89 |
|
| 90 |
# If we're a font package, but not the font.alias one
|
| 91 |
if [[ "${PN/#font-}" != "${PN}" ]] \
|
| 92 |
&& [[ "${CATEGORY}" = "media-fonts" ]] \
|
| 93 |
&& [[ "${PN}" != "font-alias" ]] \
|
| 94 |
&& [[ "${PN}" != "font-util" ]]; then
|
| 95 |
# Activate font code in the rest of the eclass
|
| 96 |
FONT="yes"
|
| 97 |
|
| 98 |
RDEPEND="${RDEPEND}
|
| 99 |
media-fonts/encodings
|
| 100 |
x11-apps/mkfontscale
|
| 101 |
x11-apps/mkfontdir"
|
| 102 |
PDEPEND="${PDEPEND}
|
| 103 |
media-fonts/font-alias"
|
| 104 |
|
| 105 |
# Starting with 7.0RC3, we can specify the font directory
|
| 106 |
# But oddly, we can't do the same for encodings or font-alias
|
| 107 |
|
| 108 |
# Wrap in `if` so ebuilds can set it too
|
| 109 |
if [[ -z ${FONT_DIR} ]]; then
|
| 110 |
FONT_DIR=${PN##*-}
|
| 111 |
|
| 112 |
fi
|
| 113 |
|
| 114 |
# Fix case of font directories
|
| 115 |
FONT_DIR=${FONT_DIR/ttf/TTF}
|
| 116 |
FONT_DIR=${FONT_DIR/otf/OTF}
|
| 117 |
FONT_DIR=${FONT_DIR/type1/Type1}
|
| 118 |
FONT_DIR=${FONT_DIR/speedo/Speedo}
|
| 119 |
|
| 120 |
# Set up configure option
|
| 121 |
FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\""
|
| 122 |
|
| 123 |
if [[ -n "${FONT}" ]]; then
|
| 124 |
if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]]; then
|
| 125 |
IUSE="${IUSE} nls"
|
| 126 |
fi
|
| 127 |
fi
|
| 128 |
fi
|
| 129 |
|
| 130 |
# If we're a driver package
|
| 131 |
if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then
|
| 132 |
# Enable driver code in the rest of the eclass
|
| 133 |
DRIVER="yes"
|
| 134 |
|
| 135 |
if [[ ${XDPVER} != -1 ]]; then
|
| 136 |
# Add driver patchset to SRC_URI
|
| 137 |
SRC_URI="${SRC_URI}
|
| 138 |
http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2"
|
| 139 |
fi
|
| 140 |
fi
|
| 141 |
|
| 142 |
# Debugging -- ignore packages that can't be built with debugging
|
| 143 |
if [[ -z "${FONT}" ]] \
|
| 144 |
|| [[ "${PN/app-doc}" != "${PN}" ]] \
|
| 145 |
|| [[ "${PN/x11-proto}" != "${PN}" ]] \
|
| 146 |
|| [[ "${PN/util-macros}" != "${PN}" ]] \
|
| 147 |
|| [[ "${PN/xbitmaps}" != "${PN}" ]] \
|
| 148 |
|| [[ "${PN/xkbdata}" != "${PN}" ]] \
|
| 149 |
|| [[ "${PN/xorg-cf-files}" != "${PN}" ]] \
|
| 150 |
|| [[ "${PN/xcursor}" != "${PN}" ]] \
|
| 151 |
; then
|
| 152 |
DEBUGGABLE="yes"
|
| 153 |
IUSE="${IUSE} debug"
|
| 154 |
if use debug; then
|
| 155 |
if ! has splitdebug ${FEATURES}; then
|
| 156 |
RESTRICT="${RESTRICT} nostrip"
|
| 157 |
fi
|
| 158 |
fi
|
| 159 |
fi
|
| 160 |
|
| 161 |
DEPEND="${DEPEND}
|
| 162 |
>=dev-util/pkgconfig-0.18"
|
| 163 |
|
| 164 |
if [[ "${PN/util-macros}" = "${PN}" ]]; then
|
| 165 |
DEPEND="${DEPEND}
|
| 166 |
>=x11-misc/util-macros-0.99.2
|
| 167 |
>=sys-devel/binutils-2.16.1-r3"
|
| 168 |
fi
|
| 169 |
|
| 170 |
RDEPEND="${RDEPEND}
|
| 171 |
|| ( >=sys-apps/man-1.6b-r2 >=sys-apps/man-db-2.4.3-r1 )
|
| 172 |
!<=x11-base/xorg-x11-6.9"
|
| 173 |
# Provides virtual/x11 for temporary use until packages are ported
|
| 174 |
# x11-base/x11-env"
|
| 175 |
|
| 176 |
x-modular_specs_check() {
|
| 177 |
if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then
|
| 178 |
append-ldflags -Wl,-z,lazy
|
| 179 |
# (#116698) breaks loading
|
| 180 |
filter-ldflags -Wl,-z,now
|
| 181 |
fi
|
| 182 |
}
|
| 183 |
|
| 184 |
x-modular_dri_check() {
|
| 185 |
# (#120057) Enabling DRI in drivers requires that the server was built with
|
| 186 |
# support for it
|
| 187 |
if [[ -n "${DRIVER}" ]]; then
|
| 188 |
if has dri ${IUSE} && use dri; then
|
| 189 |
einfo "Checking for direct rendering capabilities ..."
|
| 190 |
if ! built_with_use x11-base/xorg-server dri; then
|
| 191 |
die "You must build x11-base/xorg-server with USE=dri."
|
| 192 |
fi
|
| 193 |
fi
|
| 194 |
fi
|
| 195 |
}
|
| 196 |
|
| 197 |
x-modular_server_supports_drivers_check() {
|
| 198 |
# (#135873) Only certain servers will actually use or be capable of
|
| 199 |
# building external drivers, including binary drivers.
|
| 200 |
if [[ -n "${DRIVER}" ]]; then
|
| 201 |
if has_version '>=x11-base/xorg-server-1.1'; then
|
| 202 |
if ! built_with_use x11-base/xorg-server xorg; then
|
| 203 |
eerror "x11-base/xorg-server is not built with support for external drivers."
|
| 204 |
die "You must build x11-base/xorg-server with USE=xorg."
|
| 205 |
fi
|
| 206 |
fi
|
| 207 |
fi
|
| 208 |
}
|
| 209 |
|
| 210 |
x-modular_unpack_source() {
|
| 211 |
unpack ${A}
|
| 212 |
cd ${S}
|
| 213 |
|
| 214 |
if [[ -n ${FONT_OPTIONS} ]]; then
|
| 215 |
einfo "Detected font directory: ${FONT_DIR}"
|
| 216 |
fi
|
| 217 |
}
|
| 218 |
|
| 219 |
x-modular_patch_source() {
|
| 220 |
# Use standardized names and locations with bulk patching
|
| 221 |
# Patch directory is ${WORKDIR}/patch
|
| 222 |
# See epatch() in eutils.eclass for more documentation
|
| 223 |
if [[ -z "${EPATCH_SUFFIX}" ]] ; then
|
| 224 |
EPATCH_SUFFIX="patch"
|
| 225 |
fi
|
| 226 |
|
| 227 |
# If this is a driver package we need to fix man page install location.
|
| 228 |
# Running autoreconf will use the patched util-macros to make the
|
| 229 |
# change for us, so we only need to patch if it is not going to run.
|
| 230 |
if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]\
|
| 231 |
&& [[ ${XDPVER} != -1 ]]; then
|
| 232 |
PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2"
|
| 233 |
fi
|
| 234 |
|
| 235 |
# For specific list of patches
|
| 236 |
if [[ -n "${PATCHES}" ]] ; then
|
| 237 |
for PATCH in ${PATCHES}
|
| 238 |
do
|
| 239 |
epatch ${PATCH}
|
| 240 |
done
|
| 241 |
# For non-default directory bulk patching
|
| 242 |
elif [[ -n "${PATCH_LOC}" ]] ; then
|
| 243 |
epatch ${PATCH_LOC}
|
| 244 |
# For standard bulk patching
|
| 245 |
elif [[ -d "${EPATCH_SOURCE}" ]] ; then
|
| 246 |
epatch
|
| 247 |
fi
|
| 248 |
}
|
| 249 |
|
| 250 |
x-modular_reconf_source() {
|
| 251 |
# Run autoreconf for CVS snapshots only
|
| 252 |
if [[ "${SNAPSHOT}" = "yes" ]]
|
| 253 |
then
|
| 254 |
# If possible, generate configure if it doesn't exist
|
| 255 |
if [ -f "./configure.ac" ]
|
| 256 |
then
|
| 257 |
eautoreconf
|
| 258 |
fi
|
| 259 |
fi
|
| 260 |
|
| 261 |
# Joshua Baergen - October 23, 2005
|
| 262 |
# Fix shared lib issues on MIPS, FBSD, etc etc
|
| 263 |
elibtoolize
|
| 264 |
}
|
| 265 |
|
| 266 |
x-modular_src_unpack() {
|
| 267 |
x-modular_specs_check
|
| 268 |
x-modular_server_supports_drivers_check
|
| 269 |
x-modular_dri_check
|
| 270 |
x-modular_unpack_source
|
| 271 |
x-modular_patch_source
|
| 272 |
x-modular_reconf_source
|
| 273 |
}
|
| 274 |
|
| 275 |
x-modular_font_configure() {
|
| 276 |
if [[ -n "${FONT}" ]]; then
|
| 277 |
# Might be worth adding an option to configure your desired font
|
| 278 |
# and exclude all others. Also, should this USE be nls or minimal?
|
| 279 |
if ! use nls; then
|
| 280 |
FONT_OPTIONS="${FONT_OPTIONS}
|
| 281 |
--disable-iso8859-2
|
| 282 |
--disable-iso8859-3
|
| 283 |
--disable-iso8859-4
|
| 284 |
--disable-iso8859-5
|
| 285 |
--disable-iso8859-6
|
| 286 |
--disable-iso8859-7
|
| 287 |
--disable-iso8859-8
|
| 288 |
--disable-iso8859-9
|
| 289 |
--disable-iso8859-10
|
| 290 |
--disable-iso8859-11
|
| 291 |
--disable-iso8859-12
|
| 292 |
--disable-iso8859-13
|
| 293 |
--disable-iso8859-14
|
| 294 |
--disable-iso8859-15
|
| 295 |
--disable-iso8859-16
|
| 296 |
--disable-jisx0201
|
| 297 |
--disable-koi8-r"
|
| 298 |
fi
|
| 299 |
fi
|
| 300 |
}
|
| 301 |
|
| 302 |
x-modular_debug_setup() {
|
| 303 |
if [[ -n "${DEBUGGABLE}" ]]; then
|
| 304 |
if use debug; then
|
| 305 |
strip-flags
|
| 306 |
append-flags -g
|
| 307 |
fi
|
| 308 |
fi
|
| 309 |
}
|
| 310 |
|
| 311 |
x-modular_src_configure() {
|
| 312 |
x-modular_font_configure
|
| 313 |
x-modular_debug_setup
|
| 314 |
|
| 315 |
# If prefix isn't set here, .pc files cause problems
|
| 316 |
if [[ -x ./configure ]]; then
|
| 317 |
econf --prefix=${XDIR} \
|
| 318 |
--datadir=${XDIR}/share \
|
| 319 |
${FONT_OPTIONS} \
|
| 320 |
${DRIVER_OPTIONS} \
|
| 321 |
${CONFIGURE_OPTIONS}
|
| 322 |
fi
|
| 323 |
}
|
| 324 |
|
| 325 |
x-modular_src_make() {
|
| 326 |
emake || die "emake failed"
|
| 327 |
}
|
| 328 |
|
| 329 |
x-modular_src_compile() {
|
| 330 |
x-modular_src_configure
|
| 331 |
x-modular_src_make
|
| 332 |
}
|
| 333 |
|
| 334 |
x-modular_src_install() {
|
| 335 |
# Install everything to ${XDIR}
|
| 336 |
make \
|
| 337 |
DESTDIR="${D}" \
|
| 338 |
install
|
| 339 |
# Shouldn't be necessary in XDIR=/usr
|
| 340 |
# einstall forces datadir, so we need to re-force it
|
| 341 |
# datadir=${XDIR}/share \
|
| 342 |
# mandir=${XDIR}/share/man \
|
| 343 |
|
| 344 |
if [[ -e ${S}/ChangeLog ]]; then
|
| 345 |
dodoc ${S}/ChangeLog
|
| 346 |
fi
|
| 347 |
|
| 348 |
# Make sure docs get compressed
|
| 349 |
prepalldocs
|
| 350 |
|
| 351 |
# Don't install libtool archives for server modules
|
| 352 |
if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then
|
| 353 |
find ${D}/usr/$(get_libdir)/xorg/modules -name '*.la' \
|
| 354 |
| xargs rm -f
|
| 355 |
fi
|
| 356 |
|
| 357 |
# Don't install overlapping fonts.* files
|
| 358 |
# Generate them instead when possible
|
| 359 |
if [[ -n "${FONT}" ]]; then
|
| 360 |
remove_font_metadata
|
| 361 |
fi
|
| 362 |
|
| 363 |
if [[ -n "${DRIVER}" ]]; then
|
| 364 |
install_driver_hwdata
|
| 365 |
fi
|
| 366 |
}
|
| 367 |
|
| 368 |
x-modular_pkg_preinst() {
|
| 369 |
if [[ -n "${FONT}" ]]; then
|
| 370 |
discover_font_dirs
|
| 371 |
fi
|
| 372 |
}
|
| 373 |
|
| 374 |
x-modular_pkg_postinst() {
|
| 375 |
if [[ -n "${FONT}" ]]; then
|
| 376 |
setup_fonts
|
| 377 |
fi
|
| 378 |
}
|
| 379 |
|
| 380 |
x-modular_pkg_postrm() {
|
| 381 |
if [[ -n "${FONT}" ]]; then
|
| 382 |
cleanup_fonts
|
| 383 |
fi
|
| 384 |
}
|
| 385 |
|
| 386 |
cleanup_fonts() {
|
| 387 |
local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale"
|
| 388 |
for DIR in ${FONT_DIR}; do
|
| 389 |
unset KEEP_FONTDIR
|
| 390 |
REAL_DIR=${ROOT}usr/share/fonts/${DIR}
|
| 391 |
|
| 392 |
ebegin "Checking ${REAL_DIR} for useless files"
|
| 393 |
pushd ${REAL_DIR} &> /dev/null
|
| 394 |
for FILE in *; do
|
| 395 |
unset MATCH
|
| 396 |
for ALLOWED_FILE in ${ALLOWED_FILES}; do
|
| 397 |
if [[ ${FILE} = ${ALLOWED_FILE} ]]; then
|
| 398 |
# If it's allowed, then move on to the next file
|
| 399 |
MATCH="yes"
|
| 400 |
break
|
| 401 |
fi
|
| 402 |
done
|
| 403 |
# If we found a match in allowed files, move on to the next file
|
| 404 |
if [[ -n ${MATCH} ]]; then
|
| 405 |
continue
|
| 406 |
fi
|
| 407 |
# If we get this far, there wasn't a match in the allowed files
|
| 408 |
KEEP_FONTDIR="yes"
|
| 409 |
# We don't need to check more files if we're already keeping it
|
| 410 |
break
|
| 411 |
done
|
| 412 |
popd &> /dev/null
|
| 413 |
# If there are no files worth keeping, then get rid of the dir
|
| 414 |
if [[ -z "${KEEP_FONTDIR}" ]]; then
|
| 415 |
rm -rf ${REAL_DIR}
|
| 416 |
fi
|
| 417 |
eend 0
|
| 418 |
done
|
| 419 |
}
|
| 420 |
|
| 421 |
setup_fonts() {
|
| 422 |
if [[ ! -n "${FONT_DIRS}" ]]; then
|
| 423 |
msg="FONT_DIRS is empty. The ebuild should set it to at least one subdir of /usr/share/fonts."
|
| 424 |
eerror "${msg}"
|
| 425 |
die "${msg}"
|
| 426 |
fi
|
| 427 |
|
| 428 |
create_fonts_scale
|
| 429 |
create_fonts_dir
|
| 430 |
fix_font_permissions
|
| 431 |
create_font_cache
|
| 432 |
}
|
| 433 |
|
| 434 |
remove_font_metadata() {
|
| 435 |
local DIR
|
| 436 |
for DIR in ${FONT_DIR}; do
|
| 437 |
if [[ "${DIR}" != "Speedo" ]] && \
|
| 438 |
[[ "${DIR}" != "CID" ]] ; then
|
| 439 |
# Delete font metadata files
|
| 440 |
# fonts.scale, fonts.dir, fonts.cache-1
|
| 441 |
rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1}
|
| 442 |
fi
|
| 443 |
done
|
| 444 |
}
|
| 445 |
|
| 446 |
# Installs device-to-driver mappings for system-config-display
|
| 447 |
# and anything else that uses hwdata
|
| 448 |
install_driver_hwdata() {
|
| 449 |
insinto /usr/share/hwdata/videoaliases
|
| 450 |
for i in "${FILESDIR}"/*.xinf; do
|
| 451 |
# We need this for the case when none exist,
|
| 452 |
# so *.xinf doesn't expand
|
| 453 |
if [[ -e $i ]]; then
|
| 454 |
doins $i
|
| 455 |
fi
|
| 456 |
done
|
| 457 |
}
|
| 458 |
|
| 459 |
discover_font_dirs() {
|
| 460 |
pushd ${IMAGE}/usr/share/fonts
|
| 461 |
FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)"
|
| 462 |
FONT_DIRS="$(echo ${FONT_DIRS} | sed -e 's:./::g')"
|
| 463 |
popd
|
| 464 |
}
|
| 465 |
|
| 466 |
create_fonts_scale() {
|
| 467 |
ebegin "Creating fonts.scale files"
|
| 468 |
local x
|
| 469 |
for FONT_DIR in ${FONT_DIRS}; do
|
| 470 |
x=${ROOT}/usr/share/fonts/${FONT_DIR}
|
| 471 |
[[ -z "$(ls ${x}/)" ]] && continue
|
| 472 |
[[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue
|
| 473 |
|
| 474 |
# Only generate .scale files if truetype, opentype or type1
|
| 475 |
# fonts are present ...
|
| 476 |
|
| 477 |
# First truetype (ttf,ttc)
|
| 478 |
# NOTE: ttmkfdir does NOT work on type1 fonts (#53753)
|
| 479 |
# Also, there is no way to regenerate Speedo/CID fonts.scale
|
| 480 |
# <spyderous@gentoo.org> 2 August 2004
|
| 481 |
if [[ "${x/encodings}" = "${x}" ]] \
|
| 482 |
&& [[ -n "$(find ${x} -iname '*.tt[cf]' -print)" ]]; then
|
| 483 |
if [[ -x ${ROOT}/usr/bin/ttmkfdir ]]; then
|
| 484 |
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \
|
| 485 |
${ROOT}/usr/bin/ttmkfdir -x 2 \
|
| 486 |
-e ${ROOT}/usr/share/fonts/encodings/encodings.dir \
|
| 487 |
-o ${x}/fonts.scale -d ${x}
|
| 488 |
# ttmkfdir fails on some stuff, so try mkfontscale if it does
|
| 489 |
local ttmkfdir_return=$?
|
| 490 |
else
|
| 491 |
# We didn't use ttmkfdir at all
|
| 492 |
local ttmkfdir_return=2
|
| 493 |
fi
|
| 494 |
if [[ ${ttmkfdir_return} -ne 0 ]]; then
|
| 495 |
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \
|
| 496 |
${ROOT}/usr/bin/mkfontscale \
|
| 497 |
-a /usr/share/fonts/encodings/encodings.dir \
|
| 498 |
-- ${x}
|
| 499 |
fi
|
| 500 |
# Next type1 and opentype (pfa,pfb,otf,otc)
|
| 501 |
elif [[ "${x/encodings}" = "${x}" ]] \
|
| 502 |
&& [[ -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]]; then
|
| 503 |
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \
|
| 504 |
${ROOT}/usr/bin/mkfontscale \
|
| 505 |
-a ${ROOT}/usr/share/fonts/encodings/encodings.dir \
|
| 506 |
-- ${x}
|
| 507 |
fi
|
| 508 |
done
|
| 509 |
eend 0
|
| 510 |
}
|
| 511 |
|
| 512 |
create_fonts_dir() {
|
| 513 |
ebegin "Generating fonts.dir files"
|
| 514 |
for FONT_DIR in ${FONT_DIRS}; do
|
| 515 |
x=${ROOT}/usr/share/fonts/${FONT_DIR}
|
| 516 |
[[ -z "$(ls ${x}/)" ]] && continue
|
| 517 |
[[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue
|
| 518 |
|
| 519 |
if [[ "${x/encodings}" = "${x}" ]]; then
|
| 520 |
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \
|
| 521 |
${ROOT}/usr/bin/mkfontdir \
|
| 522 |
-e ${ROOT}/usr/share/fonts/encodings \
|
| 523 |
-e ${ROOT}/usr/share/fonts/encodings/large \
|
| 524 |
-- ${x}
|
| 525 |
fi
|
| 526 |
done
|
| 527 |
eend 0
|
| 528 |
}
|
| 529 |
|
| 530 |
fix_font_permissions() {
|
| 531 |
ebegin "Fixing permissions"
|
| 532 |
for FONT_DIR in ${FONT_DIRS}; do
|
| 533 |
find ${ROOT}/usr/share/fonts/${FONT_DIR} -type f -name 'font.*' \
|
| 534 |
-exec chmod 0644 {} \;
|
| 535 |
done
|
| 536 |
eend 0
|
| 537 |
}
|
| 538 |
|
| 539 |
create_font_cache() {
|
| 540 |
# danarmak found out that fc-cache should be run AFTER all the above
|
| 541 |
# stuff, as otherwise the cache is invalid, and has to be run again
|
| 542 |
# as root anyway
|
| 543 |
if [[ -x ${ROOT}/usr/bin/fc-cache ]]; then
|
| 544 |
ebegin "Creating FC font cache"
|
| 545 |
HOME="/root" ${ROOT}/usr/bin/fc-cache
|
| 546 |
eend 0
|
| 547 |
fi
|
| 548 |
}
|