| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.72 2006/07/29 17:42:11 joshuabaergen Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.89 2007/11/13 22:50:04 dberkholz Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Donnie Berkholz <spyderous@gentoo.org> |
5 | # Author: Donnie Berkholz <dberkholz@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass is designed to reduce code duplication in the modularized X11 |
7 | # This eclass is designed to reduce code duplication in the modularized X11 |
| 8 | # ebuilds. |
8 | # ebuilds. |
| 9 | # |
9 | # |
| 10 | # Using this eclass: |
10 | # Using this eclass: |
| … | |
… | |
| 19 | # |
19 | # |
| 20 | # If you're creating a font package and the suffix of PN is not equal to the |
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 |
21 | # subdirectory of /usr/share/fonts/ it should install into, set FONT_DIR to that |
| 22 | # directory or directories. |
22 | # directory or directories. |
| 23 | # |
23 | # |
|
|
24 | # If you want to change the auto-application of the driver patchset or prevent |
|
|
25 | # it from applying, edit XDPVER in the ebuild. Set it to -1 to prevent patch |
|
|
26 | # application or positive integers for that patch version. |
|
|
27 | # |
| 24 | # IMPORTANT: Both SNAPSHOT and FONT_DIR must be set _before_ the inherit. |
28 | # IMPORTANT: SNAPSHOT, FONT_DIR and XDPVER must be set _before_ the inherit. |
|
|
29 | # |
|
|
30 | # If you want to install to a non-default prefix (e.g., /opt/xorg), change |
|
|
31 | # XDIR. This has not been recently tested. You may need to uncomment the |
|
|
32 | # setting of datadir and mandir in x-modular_src_install() or add it back in if |
|
|
33 | # it's no longer there. You may also want to change the SLOT. |
| 25 | # |
34 | # |
| 26 | # Pretty much everything else should be automatic. |
35 | # 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 | |
36 | |
| 32 | # Directory prefix to use for everything |
37 | # Directory prefix to use for everything |
| 33 | XDIR="/usr" |
38 | XDIR="/usr" |
| 34 | |
39 | |
| 35 | # Set up default patchset version(s) if necessary |
40 | # Set up default patchset version(s) if necessary |
| … | |
… | |
| 39 | fi |
44 | fi |
| 40 | |
45 | |
| 41 | IUSE="" |
46 | IUSE="" |
| 42 | HOMEPAGE="http://xorg.freedesktop.org/" |
47 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 43 | |
48 | |
|
|
49 | if [[ ${PV} = 9999* ]]; then |
|
|
50 | GIT_ECLASS="git" |
|
|
51 | SNAPSHOT="yes" |
|
|
52 | SRC_URI="" |
|
|
53 | fi |
|
|
54 | |
| 44 | # Set up SRC_URI for individual modular releases |
55 | # Set up SRC_URI for individual modular releases |
| 45 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
56 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
| 46 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then |
57 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then |
| 47 | SRC_URI="${SRC_URI} |
58 | MODULE="app" |
| 48 | ${BASE_INDIVIDUAL_URI}/app/${P}.tar.bz2" |
|
|
| 49 | elif [[ ${CATEGORY} = app-doc ]]; then |
59 | elif [[ ${CATEGORY} = app-doc ]]; then |
| 50 | SRC_URI="${SRC_URI} |
60 | MODULE="doc" |
| 51 | ${BASE_INDIVIDUAL_URI}/doc/${P}.tar.bz2" |
|
|
| 52 | # x11-misc contains data and util, x11-themes contains data |
61 | # x11-misc contains data and util, x11-themes contains data |
| 53 | elif [[ ${CATEGORY} = x11-misc ]] || [[ ${CATEGORY} = x11-themes ]]; then |
62 | elif [[ ${CATEGORY} = x11-misc ]] || [[ ${CATEGORY} = x11-themes ]]; then |
| 54 | SRC_URI="${SRC_URI} |
63 | if [[ ${PN} == xbitmaps || ${PN} == xcursor-themes || ${PN} == xkbdata ]]; then |
| 55 | ${BASE_INDIVIDUAL_URI}/data/${P}.tar.bz2 |
64 | MODULE="data" |
| 56 | ${BASE_INDIVIDUAL_URI}/util/${P}.tar.bz2" |
65 | else |
|
|
66 | MODULE="data" |
|
|
67 | fi |
| 57 | elif [[ ${CATEGORY} = x11-drivers ]]; then |
68 | elif [[ ${CATEGORY} = x11-drivers ]]; then |
| 58 | SRC_URI="${SRC_URI} |
69 | MODULE="driver" |
| 59 | ${BASE_INDIVIDUAL_URI}/driver/${P}.tar.bz2" |
|
|
| 60 | elif [[ ${CATEGORY} = media-fonts ]]; then |
70 | elif [[ ${CATEGORY} = media-fonts ]]; then |
| 61 | SRC_URI="${SRC_URI} |
71 | MODULE="font" |
| 62 | ${BASE_INDIVIDUAL_URI}/font/${P}.tar.bz2" |
|
|
| 63 | elif [[ ${CATEGORY} = x11-libs ]]; then |
72 | elif [[ ${CATEGORY} = x11-libs ]]; then |
| 64 | SRC_URI="${SRC_URI} |
73 | MODULE="lib" |
| 65 | ${BASE_INDIVIDUAL_URI}/lib/${P}.tar.bz2" |
|
|
| 66 | elif [[ ${CATEGORY} = x11-proto ]]; then |
74 | elif [[ ${CATEGORY} = x11-proto ]]; then |
| 67 | SRC_URI="${SRC_URI} |
75 | MODULE="proto" |
| 68 | ${BASE_INDIVIDUAL_URI}/proto/${P}.tar.bz2" |
|
|
| 69 | elif [[ ${CATEGORY} = x11-base ]]; then |
76 | elif [[ ${CATEGORY} = x11-base ]]; then |
| 70 | SRC_URI="${SRC_URI} |
77 | MODULE="xserver" |
| 71 | ${BASE_INDIVIDUAL_URI}/xserver/${P}.tar.bz2" |
78 | fi |
|
|
79 | |
|
|
80 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
81 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${MODULE}/${PN}" |
|
|
82 | else |
|
|
83 | SRC_URI="${SRC_URI} ${BASE_INDIVIDUAL_URI}/${MODULE}/${P}.tar.bz2" |
| 72 | fi |
84 | fi |
| 73 | |
85 | |
| 74 | SLOT="0" |
86 | SLOT="0" |
| 75 | |
87 | |
| 76 | # Set the license for the package. This can be overridden by setting |
88 | # Set the license for the package. This can be overridden by setting |
| … | |
… | |
| 79 | |
91 | |
| 80 | # Set up shared dependencies |
92 | # Set up shared dependencies |
| 81 | if [[ -n "${SNAPSHOT}" ]]; then |
93 | if [[ -n "${SNAPSHOT}" ]]; then |
| 82 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
94 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 83 | DEPEND="${DEPEND} |
95 | DEPEND="${DEPEND} |
| 84 | >=sys-devel/autoconf-2.57 |
|
|
| 85 | >=sys-devel/automake-1.7 |
|
|
| 86 | >=sys-devel/libtool-1.5 |
96 | >=sys-devel/libtool-1.5 |
| 87 | >=sys-devel/m4-1.4" |
97 | >=sys-devel/m4-1.4" |
|
|
98 | WANT_AUTOCONF="latest" |
|
|
99 | WANT_AUTOMAKE="latest" |
| 88 | fi |
100 | fi |
| 89 | |
101 | |
| 90 | # If we're a font package, but not the font.alias one |
102 | # If we're a font package, but not the font.alias one |
|
|
103 | FONT_ECLASS="" |
| 91 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
104 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
| 92 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
105 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
| 93 | && [[ "${PN}" != "font-alias" ]] \ |
106 | && [[ "${PN}" != "font-alias" ]] \ |
| 94 | && [[ "${PN}" != "font-util" ]]; then |
107 | && [[ "${PN}" != "font-util" ]]; then |
| 95 | # Activate font code in the rest of the eclass |
108 | # Activate font code in the rest of the eclass |
| 96 | FONT="yes" |
109 | FONT="yes" |
| 97 | |
110 | |
|
|
111 | # Whether to inherit the font eclass |
|
|
112 | FONT_ECLASS="font" |
|
|
113 | |
| 98 | RDEPEND="${RDEPEND} |
114 | RDEPEND="${RDEPEND} |
| 99 | media-fonts/encodings |
115 | media-fonts/encodings |
| 100 | x11-apps/mkfontscale |
116 | x11-apps/mkfontscale |
| 101 | x11-apps/mkfontdir" |
117 | x11-apps/mkfontdir" |
| 102 | PDEPEND="${PDEPEND} |
118 | PDEPEND="${PDEPEND} |
| … | |
… | |
| 133 | DRIVER="yes" |
149 | DRIVER="yes" |
| 134 | |
150 | |
| 135 | if [[ ${XDPVER} != -1 ]]; then |
151 | if [[ ${XDPVER} != -1 ]]; then |
| 136 | # Add driver patchset to SRC_URI |
152 | # Add driver patchset to SRC_URI |
| 137 | SRC_URI="${SRC_URI} |
153 | SRC_URI="${SRC_URI} |
| 138 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
154 | mirror://gentoo/x11-driver-patches-${XDPVER}.tar.bz2" |
| 139 | fi |
155 | fi |
| 140 | fi |
156 | fi |
| 141 | |
157 | |
| 142 | # Debugging -- ignore packages that can't be built with debugging |
158 | # Debugging -- ignore packages that can't be built with debugging |
| 143 | if [[ -z "${FONT}" ]] \ |
159 | if [[ -z "${FONT}" ]] \ |
| 144 | || [[ "${PN/app-doc}" != "${PN}" ]] \ |
160 | && [[ "${CATEGORY/app-doc}" = "${CATEGORY}" ]] \ |
| 145 | || [[ "${PN/x11-proto}" != "${PN}" ]] \ |
161 | && [[ "${CATEGORY/x11-proto}" = "${CATEGORY}" ]] \ |
| 146 | || [[ "${PN/util-macros}" != "${PN}" ]] \ |
162 | && [[ "${PN/util-macros}" = "${PN}" ]] \ |
| 147 | || [[ "${PN/xbitmaps}" != "${PN}" ]] \ |
163 | && [[ "${PN/xbitmaps}" = "${PN}" ]] \ |
| 148 | || [[ "${PN/xkbdata}" != "${PN}" ]] \ |
164 | && [[ "${PN/xkbdata}" = "${PN}" ]] \ |
| 149 | || [[ "${PN/xorg-cf-files}" != "${PN}" ]] \ |
165 | && [[ "${PN/xorg-cf-files}" = "${PN}" ]] \ |
| 150 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
166 | && [[ "${PN/xcursor}" = "${PN}" ]] \ |
| 151 | ; then |
167 | ; then |
| 152 | DEBUGGABLE="yes" |
168 | DEBUGGABLE="yes" |
| 153 | IUSE="${IUSE} debug" |
169 | IUSE="${IUSE} debug" |
| 154 | if use debug; then |
|
|
| 155 | if ! has splitdebug ${FEATURES}; then |
|
|
| 156 | RESTRICT="${RESTRICT} nostrip" |
|
|
| 157 | fi |
|
|
| 158 | fi |
|
|
| 159 | fi |
170 | fi |
| 160 | |
171 | |
| 161 | DEPEND="${DEPEND} |
172 | DEPEND="${DEPEND} |
| 162 | >=dev-util/pkgconfig-0.18" |
173 | >=dev-util/pkgconfig-0.18" |
| 163 | |
174 | |
| … | |
… | |
| 169 | |
180 | |
| 170 | RDEPEND="${RDEPEND} |
181 | RDEPEND="${RDEPEND} |
| 171 | !<=x11-base/xorg-x11-6.9" |
182 | !<=x11-base/xorg-x11-6.9" |
| 172 | # Provides virtual/x11 for temporary use until packages are ported |
183 | # Provides virtual/x11 for temporary use until packages are ported |
| 173 | # x11-base/x11-env" |
184 | # x11-base/x11-env" |
|
|
185 | |
|
|
186 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
|
|
187 | ${FONT_ECLASS} ${GIT_ECLASS} |
| 174 | |
188 | |
| 175 | x-modular_specs_check() { |
189 | x-modular_specs_check() { |
| 176 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
190 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
| 177 | append-ldflags -Wl,-z,lazy |
191 | append-ldflags -Wl,-z,lazy |
| 178 | # (#116698) breaks loading |
192 | # (#116698) breaks loading |
| … | |
… | |
| 205 | fi |
219 | fi |
| 206 | fi |
220 | fi |
| 207 | } |
221 | } |
| 208 | |
222 | |
| 209 | x-modular_unpack_source() { |
223 | x-modular_unpack_source() { |
|
|
224 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
225 | git_src_unpack |
|
|
226 | else |
| 210 | unpack ${A} |
227 | unpack ${A} |
|
|
228 | fi |
| 211 | cd ${S} |
229 | cd ${S} |
| 212 | |
230 | |
| 213 | if [[ -n ${FONT_OPTIONS} ]]; then |
231 | if [[ -n ${FONT_OPTIONS} ]]; then |
| 214 | einfo "Detected font directory: ${FONT_DIR}" |
232 | einfo "Detected font directory: ${FONT_DIR}" |
| 215 | fi |
233 | fi |
| … | |
… | |
| 249 | x-modular_reconf_source() { |
267 | x-modular_reconf_source() { |
| 250 | # Run autoreconf for CVS snapshots only |
268 | # Run autoreconf for CVS snapshots only |
| 251 | if [[ "${SNAPSHOT}" = "yes" ]] |
269 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 252 | then |
270 | then |
| 253 | # If possible, generate configure if it doesn't exist |
271 | # If possible, generate configure if it doesn't exist |
| 254 | if [ -f "${S}/configure.ac" ] |
272 | if [ -f "./configure.ac" ] |
| 255 | then |
273 | then |
| 256 | eautoreconf |
274 | eautoreconf |
| 257 | fi |
275 | fi |
| 258 | fi |
276 | fi |
| 259 | |
277 | |
| … | |
… | |
| 310 | x-modular_src_configure() { |
328 | x-modular_src_configure() { |
| 311 | x-modular_font_configure |
329 | x-modular_font_configure |
| 312 | x-modular_debug_setup |
330 | x-modular_debug_setup |
| 313 | |
331 | |
| 314 | # If prefix isn't set here, .pc files cause problems |
332 | # If prefix isn't set here, .pc files cause problems |
| 315 | if [[ -x ./configure ]]; then |
333 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
| 316 | econf --prefix=${XDIR} \ |
334 | econf --prefix=${XDIR} \ |
| 317 | --datadir=${XDIR}/share \ |
335 | --datadir=${XDIR}/share \ |
| 318 | ${FONT_OPTIONS} \ |
336 | ${FONT_OPTIONS} \ |
| 319 | ${DRIVER_OPTIONS} \ |
337 | ${DRIVER_OPTIONS} \ |
| 320 | ${CONFIGURE_OPTIONS} |
338 | ${CONFIGURE_OPTIONS} |
| … | |
… | |
| 338 | # Shouldn't be necessary in XDIR=/usr |
356 | # Shouldn't be necessary in XDIR=/usr |
| 339 | # einstall forces datadir, so we need to re-force it |
357 | # einstall forces datadir, so we need to re-force it |
| 340 | # datadir=${XDIR}/share \ |
358 | # datadir=${XDIR}/share \ |
| 341 | # mandir=${XDIR}/share/man \ |
359 | # mandir=${XDIR}/share/man \ |
| 342 | |
360 | |
|
|
361 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
362 | pushd "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
|
|
363 | git log ${GIT_TREE} > "${S}"/ChangeLog |
|
|
364 | popd |
|
|
365 | fi |
|
|
366 | |
| 343 | if [[ -e ${S}/ChangeLog ]]; then |
367 | if [[ -e ${S}/ChangeLog ]]; then |
| 344 | dodoc ${S}/ChangeLog |
368 | dodoc ${S}/ChangeLog |
| 345 | fi |
369 | fi |
| 346 | |
370 | |
| 347 | # Make sure docs get compressed |
371 | # Make sure docs get compressed |
| … | |
… | |
| 356 | # Don't install overlapping fonts.* files |
380 | # Don't install overlapping fonts.* files |
| 357 | # Generate them instead when possible |
381 | # Generate them instead when possible |
| 358 | if [[ -n "${FONT}" ]]; then |
382 | if [[ -n "${FONT}" ]]; then |
| 359 | remove_font_metadata |
383 | remove_font_metadata |
| 360 | fi |
384 | fi |
|
|
385 | |
|
|
386 | if [[ -n "${DRIVER}" ]]; then |
|
|
387 | install_driver_hwdata |
|
|
388 | fi |
| 361 | } |
389 | } |
| 362 | |
390 | |
| 363 | x-modular_pkg_preinst() { |
391 | x-modular_pkg_preinst() { |
| 364 | if [[ -n "${FONT}" ]]; then |
392 | # We no longer do anything here, but we can't remove it from the API |
| 365 | discover_font_dirs |
393 | : |
| 366 | fi |
|
|
| 367 | } |
394 | } |
| 368 | |
395 | |
| 369 | x-modular_pkg_postinst() { |
396 | x-modular_pkg_postinst() { |
| 370 | if [[ -n "${FONT}" ]]; then |
397 | if [[ -n "${FONT}" ]]; then |
| 371 | setup_fonts |
398 | setup_fonts |
| … | |
… | |
| 373 | } |
400 | } |
| 374 | |
401 | |
| 375 | x-modular_pkg_postrm() { |
402 | x-modular_pkg_postrm() { |
| 376 | if [[ -n "${FONT}" ]]; then |
403 | if [[ -n "${FONT}" ]]; then |
| 377 | cleanup_fonts |
404 | cleanup_fonts |
|
|
405 | font_pkg_postrm |
| 378 | fi |
406 | fi |
| 379 | } |
407 | } |
| 380 | |
408 | |
| 381 | cleanup_fonts() { |
409 | cleanup_fonts() { |
| 382 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
410 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
| … | |
… | |
| 412 | eend 0 |
440 | eend 0 |
| 413 | done |
441 | done |
| 414 | } |
442 | } |
| 415 | |
443 | |
| 416 | setup_fonts() { |
444 | setup_fonts() { |
| 417 | if [[ ! -n "${FONT_DIRS}" ]]; then |
445 | if [[ ! -n "${FONT_DIR}" ]]; then |
| 418 | msg="FONT_DIRS is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
446 | msg="FONT_DIR is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
| 419 | eerror "${msg}" |
447 | eerror "${msg}" |
| 420 | die "${msg}" |
448 | die "${msg}" |
| 421 | fi |
449 | fi |
| 422 | |
450 | |
| 423 | create_fonts_scale |
451 | create_fonts_scale |
| … | |
… | |
| 436 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
464 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
| 437 | fi |
465 | fi |
| 438 | done |
466 | done |
| 439 | } |
467 | } |
| 440 | |
468 | |
|
|
469 | # Installs device-to-driver mappings for system-config-display |
|
|
470 | # and anything else that uses hwdata |
|
|
471 | install_driver_hwdata() { |
|
|
472 | insinto /usr/share/hwdata/videoaliases |
|
|
473 | for i in "${FILESDIR}"/*.xinf; do |
|
|
474 | # We need this for the case when none exist, |
|
|
475 | # so *.xinf doesn't expand |
|
|
476 | if [[ -e $i ]]; then |
|
|
477 | doins $i |
|
|
478 | fi |
|
|
479 | done |
|
|
480 | } |
|
|
481 | |
| 441 | discover_font_dirs() { |
482 | discover_font_dirs() { |
| 442 | pushd ${IMAGE}/usr/share/fonts |
483 | FONT_DIRS="${FONT_DIR}" |
| 443 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
|
|
| 444 | FONT_DIRS="$(echo ${FONT_DIRS} | sed -e 's:./::g')" |
|
|
| 445 | popd |
|
|
| 446 | } |
484 | } |
| 447 | |
485 | |
| 448 | create_fonts_scale() { |
486 | create_fonts_scale() { |
| 449 | ebegin "Creating fonts.scale files" |
487 | ebegin "Creating fonts.scale files" |
| 450 | local x |
488 | local x |
| 451 | for FONT_DIR in ${FONT_DIRS}; do |
489 | for DIR in ${FONT_DIR}; do |
| 452 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
490 | x=${ROOT}/usr/share/fonts/${DIR} |
| 453 | [[ -z "$(ls ${x}/)" ]] && continue |
491 | [[ -z "$(ls ${x}/)" ]] && continue |
| 454 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
492 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 455 | |
493 | |
| 456 | # Only generate .scale files if truetype, opentype or type1 |
494 | # Only generate .scale files if truetype, opentype or type1 |
| 457 | # fonts are present ... |
495 | # fonts are present ... |
| 458 | |
496 | |
| 459 | # First truetype (ttf,ttc) |
|
|
| 460 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
|
|
| 461 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
497 | # NOTE: There is no way to regenerate Speedo/CID fonts.scale |
| 462 | # <spyderous@gentoo.org> 2 August 2004 |
498 | # <dberkholz@gentoo.org> 2 August 2004 |
| 463 | if [[ "${x/encodings}" = "${x}" ]] \ |
499 | if [[ "${x/encodings}" = "${x}" ]] \ |
| 464 | && [[ -n "$(find ${x} -iname '*.tt[cf]' -print)" ]]; then |
|
|
| 465 | if [[ -x ${ROOT}/usr/bin/ttmkfdir ]]; then |
|
|
| 466 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
|
|
| 467 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
|
|
| 468 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
|
|
| 469 | -o ${x}/fonts.scale -d ${x} |
|
|
| 470 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
|
|
| 471 | local ttmkfdir_return=$? |
|
|
| 472 | else |
|
|
| 473 | # We didn't use ttmkfdir at all |
|
|
| 474 | local ttmkfdir_return=2 |
|
|
| 475 | fi |
|
|
| 476 | if [[ ${ttmkfdir_return} -ne 0 ]]; then |
|
|
| 477 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
|
|
| 478 | ${ROOT}/usr/bin/mkfontscale \ |
|
|
| 479 | -a /usr/share/fonts/encodings/encodings.dir \ |
|
|
| 480 | -- ${x} |
|
|
| 481 | fi |
|
|
| 482 | # Next type1 and opentype (pfa,pfb,otf,otc) |
|
|
| 483 | elif [[ "${x/encodings}" = "${x}" ]] \ |
|
|
| 484 | && [[ -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]]; then |
500 | && [[ -n "$(find ${x} -iname '*.[pot][ft][abcf]' -print)" ]]; then |
| 485 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
501 | mkfontscale \ |
| 486 | ${ROOT}/usr/bin/mkfontscale \ |
|
|
| 487 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
502 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
| 488 | -- ${x} |
503 | -- ${x} |
| 489 | fi |
504 | fi |
| 490 | done |
505 | done |
| 491 | eend 0 |
506 | eend 0 |
| 492 | } |
507 | } |
| 493 | |
508 | |
| 494 | create_fonts_dir() { |
509 | create_fonts_dir() { |
| 495 | ebegin "Generating fonts.dir files" |
510 | ebegin "Generating fonts.dir files" |
| 496 | for FONT_DIR in ${FONT_DIRS}; do |
511 | for DIR in ${FONT_DIR}; do |
| 497 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
512 | x=${ROOT}/usr/share/fonts/${DIR} |
| 498 | [[ -z "$(ls ${x}/)" ]] && continue |
513 | [[ -z "$(ls ${x}/)" ]] && continue |
| 499 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
514 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 500 | |
515 | |
| 501 | if [[ "${x/encodings}" = "${x}" ]]; then |
516 | if [[ "${x/encodings}" = "${x}" ]]; then |
| 502 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
517 | mkfontdir \ |
| 503 | ${ROOT}/usr/bin/mkfontdir \ |
|
|
| 504 | -e ${ROOT}/usr/share/fonts/encodings \ |
518 | -e ${ROOT}/usr/share/fonts/encodings \ |
| 505 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
519 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
| 506 | -- ${x} |
520 | -- ${x} |
| 507 | fi |
521 | fi |
| 508 | done |
522 | done |
| 509 | eend 0 |
523 | eend 0 |
| 510 | } |
524 | } |
| 511 | |
525 | |
| 512 | fix_font_permissions() { |
526 | fix_font_permissions() { |
| 513 | ebegin "Fixing permissions" |
527 | ebegin "Fixing permissions" |
| 514 | for FONT_DIR in ${FONT_DIRS}; do |
528 | for DIR in ${FONT_DIR}; do |
| 515 | find ${ROOT}/usr/share/fonts/${FONT_DIR} -type f -name 'font.*' \ |
529 | find ${ROOT}/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
| 516 | -exec chmod 0644 {} \; |
530 | -exec chmod 0644 {} \; |
| 517 | done |
531 | done |
| 518 | eend 0 |
532 | eend 0 |
| 519 | } |
533 | } |
| 520 | |
534 | |
| 521 | create_font_cache() { |
535 | create_font_cache() { |
| 522 | # danarmak found out that fc-cache should be run AFTER all the above |
536 | font_pkg_postinst |
| 523 | # stuff, as otherwise the cache is invalid, and has to be run again |
|
|
| 524 | # as root anyway |
|
|
| 525 | if [[ -x ${ROOT}/usr/bin/fc-cache ]]; then |
|
|
| 526 | ebegin "Creating FC font cache" |
|
|
| 527 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
|
|
| 528 | eend 0 |
|
|
| 529 | fi |
|
|
| 530 | } |
537 | } |
|
|
538 | |
|
|
539 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |