| 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.43 2006/02/05 22:52:49 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.83 2007/05/02 07:10:33 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 toolchain-funcs flag-o-matic |
|
|
| 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 |
| … | |
… | |
| 38 | XDPVER="1" |
43 | XDPVER="1" |
| 39 | fi |
44 | fi |
| 40 | |
45 | |
| 41 | IUSE="" |
46 | IUSE="" |
| 42 | HOMEPAGE="http://xorg.freedesktop.org/" |
47 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 43 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0/src/everything/${P}.tar.bz2 |
48 | |
| 44 | http://xorg.freedesktop.org/releases/X11R7.0-RC4/everything/${P}.tar.bz2 |
49 | # Set up SRC_URI for individual modular releases |
| 45 | http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
50 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
| 46 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
51 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then |
| 47 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
52 | SRC_URI="${SRC_URI} |
| 48 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
53 | ${BASE_INDIVIDUAL_URI}/app/${P}.tar.bz2" |
|
|
54 | elif [[ ${CATEGORY} = app-doc ]]; then |
|
|
55 | SRC_URI="${SRC_URI} |
|
|
56 | ${BASE_INDIVIDUAL_URI}/doc/${P}.tar.bz2" |
|
|
57 | # x11-misc contains data and util, x11-themes contains data |
|
|
58 | elif [[ ${CATEGORY} = x11-misc ]] || [[ ${CATEGORY} = x11-themes ]]; then |
|
|
59 | SRC_URI="${SRC_URI} |
|
|
60 | ${BASE_INDIVIDUAL_URI}/data/${P}.tar.bz2 |
|
|
61 | ${BASE_INDIVIDUAL_URI}/util/${P}.tar.bz2" |
|
|
62 | elif [[ ${CATEGORY} = x11-drivers ]]; then |
|
|
63 | SRC_URI="${SRC_URI} |
|
|
64 | ${BASE_INDIVIDUAL_URI}/driver/${P}.tar.bz2" |
|
|
65 | elif [[ ${CATEGORY} = media-fonts ]]; then |
|
|
66 | SRC_URI="${SRC_URI} |
|
|
67 | ${BASE_INDIVIDUAL_URI}/font/${P}.tar.bz2" |
|
|
68 | elif [[ ${CATEGORY} = x11-libs ]]; then |
|
|
69 | SRC_URI="${SRC_URI} |
|
|
70 | ${BASE_INDIVIDUAL_URI}/lib/${P}.tar.bz2" |
|
|
71 | elif [[ ${CATEGORY} = x11-proto ]]; then |
|
|
72 | SRC_URI="${SRC_URI} |
|
|
73 | ${BASE_INDIVIDUAL_URI}/proto/${P}.tar.bz2" |
|
|
74 | elif [[ ${CATEGORY} = x11-base ]]; then |
|
|
75 | SRC_URI="${SRC_URI} |
|
|
76 | ${BASE_INDIVIDUAL_URI}/xserver/${P}.tar.bz2" |
|
|
77 | fi |
|
|
78 | |
| 49 | SLOT="0" |
79 | SLOT="0" |
| 50 | |
80 | |
| 51 | # Set the license for the package. This can be overridden by setting |
81 | # Set the license for the package. This can be overridden by setting |
| 52 | # LICENSE after the inherit. |
82 | # LICENSE after the inherit. |
| 53 | LICENSE=${PN} |
83 | LICENSE=${PN} |
| 54 | |
84 | |
| 55 | # Set up shared dependencies |
85 | # Set up shared dependencies |
| 56 | if [[ -n "${SNAPSHOT}" ]]; then |
86 | if [[ -n "${SNAPSHOT}" ]]; then |
| 57 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
87 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 58 | DEPEND="${DEPEND} |
88 | DEPEND="${DEPEND} |
| 59 | >=sys-devel/autoconf-2.57 |
|
|
| 60 | >=sys-devel/automake-1.7 |
|
|
| 61 | >=sys-devel/libtool-1.5 |
89 | >=sys-devel/libtool-1.5 |
| 62 | >=sys-devel/m4-1.4" |
90 | >=sys-devel/m4-1.4" |
|
|
91 | WANT_AUTOCONF="latest" |
|
|
92 | WANT_AUTOMAKE="latest" |
| 63 | fi |
93 | fi |
| 64 | |
94 | |
| 65 | # If we're a font package, but not the font.alias one |
95 | # If we're a font package, but not the font.alias one |
|
|
96 | FONT_ECLASS="" |
| 66 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
97 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
98 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
| 67 | && [[ "${PN}" != "font-alias" ]] \ |
99 | && [[ "${PN}" != "font-alias" ]] \ |
| 68 | && [[ "${PN}" != "font-util" ]]; then |
100 | && [[ "${PN}" != "font-util" ]]; then |
| 69 | # Activate font code in the rest of the eclass |
101 | # Activate font code in the rest of the eclass |
| 70 | FONT="yes" |
102 | FONT="yes" |
|
|
103 | |
|
|
104 | # Whether to inherit the font eclass |
|
|
105 | FONT_ECLASS="font" |
| 71 | |
106 | |
| 72 | RDEPEND="${RDEPEND} |
107 | RDEPEND="${RDEPEND} |
| 73 | media-fonts/encodings |
108 | media-fonts/encodings |
| 74 | x11-apps/mkfontscale |
109 | x11-apps/mkfontscale |
| 75 | x11-apps/mkfontdir" |
110 | x11-apps/mkfontdir" |
| … | |
… | |
| 104 | # If we're a driver package |
139 | # If we're a driver package |
| 105 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
140 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 106 | # Enable driver code in the rest of the eclass |
141 | # Enable driver code in the rest of the eclass |
| 107 | DRIVER="yes" |
142 | DRIVER="yes" |
| 108 | |
143 | |
|
|
144 | if [[ ${XDPVER} != -1 ]]; then |
| 109 | # Add driver patchset to SRC_URI |
145 | # Add driver patchset to SRC_URI |
| 110 | SRC_URI="${SRC_URI} |
146 | SRC_URI="${SRC_URI} |
| 111 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
147 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
148 | fi |
| 112 | fi |
149 | fi |
| 113 | |
150 | |
| 114 | # Debugging -- ignore packages that can't be built with debugging |
151 | # Debugging -- ignore packages that can't be built with debugging |
| 115 | if [[ -z "${FONT}" ]] \ |
152 | if [[ -z "${FONT}" ]] \ |
| 116 | || [[ "${PN/app-doc}" != "${PN}" ]] \ |
153 | || [[ "${PN/app-doc}" != "${PN}" ]] \ |
| … | |
… | |
| 122 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
159 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
| 123 | ; then |
160 | ; then |
| 124 | DEBUGGABLE="yes" |
161 | DEBUGGABLE="yes" |
| 125 | IUSE="${IUSE} debug" |
162 | IUSE="${IUSE} debug" |
| 126 | if use debug; then |
163 | if use debug; then |
|
|
164 | if ! has splitdebug ${FEATURES}; then |
| 127 | RESTRICT="${RESTRICT} nostrip" |
165 | RESTRICT="${RESTRICT} nostrip" |
|
|
166 | fi |
| 128 | fi |
167 | fi |
| 129 | fi |
168 | fi |
| 130 | |
169 | |
| 131 | DEPEND="${DEPEND} |
170 | DEPEND="${DEPEND} |
| 132 | >=dev-util/pkgconfig-0.18" |
171 | >=dev-util/pkgconfig-0.18" |
| 133 | |
172 | |
| 134 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
173 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
| 135 | DEPEND="${DEPEND} |
174 | DEPEND="${DEPEND} |
| 136 | >=x11-misc/util-macros-0.99.2" |
175 | >=x11-misc/util-macros-0.99.2 |
|
|
176 | >=sys-devel/binutils-2.16.1-r3" |
| 137 | fi |
177 | fi |
| 138 | |
178 | |
| 139 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
|
|
| 140 | RDEPEND="${RDEPEND} |
179 | RDEPEND="${RDEPEND} |
|
|
180 | || ( >=sys-apps/man-1.6b-r2 >=sys-apps/man-db-2.4.3-r1 ) |
| 141 | !<=x11-base/xorg-x11-6.9 |
181 | !<=x11-base/xorg-x11-6.9" |
| 142 | >=sys-apps/man-1.6b-r2" |
|
|
| 143 | # Provides virtual/x11 for temporary use until packages are ported |
182 | # Provides virtual/x11 for temporary use until packages are ported |
| 144 | # x11-base/x11-env" |
183 | # x11-base/x11-env" |
|
|
184 | |
|
|
185 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools ${FONT_ECLASS} |
|
|
186 | |
|
|
187 | x-modular_specs_check() { |
|
|
188 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
189 | append-ldflags -Wl,-z,lazy |
|
|
190 | # (#116698) breaks loading |
|
|
191 | filter-ldflags -Wl,-z,now |
|
|
192 | fi |
|
|
193 | } |
|
|
194 | |
|
|
195 | x-modular_dri_check() { |
|
|
196 | # (#120057) Enabling DRI in drivers requires that the server was built with |
|
|
197 | # support for it |
|
|
198 | if [[ -n "${DRIVER}" ]]; then |
|
|
199 | if has dri ${IUSE} && use dri; then |
|
|
200 | einfo "Checking for direct rendering capabilities ..." |
|
|
201 | if ! built_with_use x11-base/xorg-server dri; then |
|
|
202 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
203 | fi |
|
|
204 | fi |
|
|
205 | fi |
|
|
206 | } |
|
|
207 | |
|
|
208 | x-modular_server_supports_drivers_check() { |
|
|
209 | # (#135873) Only certain servers will actually use or be capable of |
|
|
210 | # building external drivers, including binary drivers. |
|
|
211 | if [[ -n "${DRIVER}" ]]; then |
|
|
212 | if has_version '>=x11-base/xorg-server-1.1'; then |
|
|
213 | if ! built_with_use x11-base/xorg-server xorg; then |
|
|
214 | eerror "x11-base/xorg-server is not built with support for external drivers." |
|
|
215 | die "You must build x11-base/xorg-server with USE=xorg." |
|
|
216 | fi |
|
|
217 | fi |
|
|
218 | fi |
|
|
219 | } |
| 145 | |
220 | |
| 146 | x-modular_unpack_source() { |
221 | x-modular_unpack_source() { |
| 147 | unpack ${A} |
222 | unpack ${A} |
| 148 | cd ${S} |
223 | cd ${S} |
| 149 | |
224 | |
| … | |
… | |
| 161 | fi |
236 | fi |
| 162 | |
237 | |
| 163 | # If this is a driver package we need to fix man page install location. |
238 | # If this is a driver package we need to fix man page install location. |
| 164 | # Running autoreconf will use the patched util-macros to make the |
239 | # Running autoreconf will use the patched util-macros to make the |
| 165 | # change for us, so we only need to patch if it is not going to run. |
240 | # change for us, so we only need to patch if it is not going to run. |
| 166 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]; then |
241 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]\ |
|
|
242 | && [[ ${XDPVER} != -1 ]]; then |
| 167 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
243 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
| 168 | fi |
244 | fi |
| 169 | |
245 | |
| 170 | # For specific list of patches |
246 | # For specific list of patches |
| 171 | if [[ -n "${PATCHES}" ]] ; then |
247 | if [[ -n "${PATCHES}" ]] ; then |
| … | |
… | |
| 185 | x-modular_reconf_source() { |
261 | x-modular_reconf_source() { |
| 186 | # Run autoreconf for CVS snapshots only |
262 | # Run autoreconf for CVS snapshots only |
| 187 | if [[ "${SNAPSHOT}" = "yes" ]] |
263 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 188 | then |
264 | then |
| 189 | # If possible, generate configure if it doesn't exist |
265 | # If possible, generate configure if it doesn't exist |
| 190 | if [ -f "${S}/configure.ac" ] |
266 | if [ -f "./configure.ac" ] |
| 191 | then |
267 | then |
| 192 | einfo "Running autoreconf..." |
268 | eautoreconf |
| 193 | autoreconf -v --force --install |
|
|
| 194 | fi |
|
|
| 195 | fi |
269 | fi |
|
|
270 | fi |
| 196 | |
271 | |
|
|
272 | # Joshua Baergen - October 23, 2005 |
|
|
273 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
274 | elibtoolize |
| 197 | } |
275 | } |
| 198 | |
276 | |
| 199 | x-modular_src_unpack() { |
277 | x-modular_src_unpack() { |
| 200 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
278 | x-modular_specs_check |
| 201 | if gcc-specs-now; then |
279 | x-modular_server_supports_drivers_check |
| 202 | msg="Do not emerge ${PN} without vanilla gcc!" |
280 | x-modular_dri_check |
| 203 | eerror "$msg" |
|
|
| 204 | die "$msg" |
|
|
| 205 | fi |
|
|
| 206 | fi |
|
|
| 207 | |
|
|
| 208 | x-modular_unpack_source |
281 | x-modular_unpack_source |
| 209 | x-modular_patch_source |
282 | x-modular_patch_source |
| 210 | x-modular_reconf_source |
283 | x-modular_reconf_source |
| 211 | |
|
|
| 212 | # Joshua Baergen - October 23, 2005 |
|
|
| 213 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
| 214 | elibtoolize |
|
|
| 215 | } |
284 | } |
| 216 | |
285 | |
| 217 | x-modular_font_configure() { |
286 | x-modular_font_configure() { |
| 218 | if [[ -n "${FONT}" ]]; then |
287 | if [[ -n "${FONT}" ]]; then |
| 219 | # Might be worth adding an option to configure your desired font |
288 | # Might be worth adding an option to configure your desired font |
| … | |
… | |
| 281 | # Shouldn't be necessary in XDIR=/usr |
350 | # Shouldn't be necessary in XDIR=/usr |
| 282 | # einstall forces datadir, so we need to re-force it |
351 | # einstall forces datadir, so we need to re-force it |
| 283 | # datadir=${XDIR}/share \ |
352 | # datadir=${XDIR}/share \ |
| 284 | # mandir=${XDIR}/share/man \ |
353 | # mandir=${XDIR}/share/man \ |
| 285 | |
354 | |
|
|
355 | if [[ -e ${S}/ChangeLog ]]; then |
|
|
356 | dodoc ${S}/ChangeLog |
|
|
357 | fi |
|
|
358 | |
|
|
359 | # Make sure docs get compressed |
|
|
360 | prepalldocs |
|
|
361 | |
| 286 | # Don't install libtool archives for server modules |
362 | # Don't install libtool archives for server modules |
| 287 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
363 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
| 288 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
364 | find ${D}/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
| 289 | | xargs rm -f |
365 | | xargs rm -f |
| 290 | fi |
366 | fi |
|
|
367 | |
|
|
368 | # Don't install overlapping fonts.* files |
|
|
369 | # Generate them instead when possible |
|
|
370 | if [[ -n "${FONT}" ]]; then |
|
|
371 | remove_font_metadata |
|
|
372 | fi |
|
|
373 | |
|
|
374 | if [[ -n "${DRIVER}" ]]; then |
|
|
375 | install_driver_hwdata |
|
|
376 | fi |
| 291 | } |
377 | } |
| 292 | |
378 | |
| 293 | x-modular_pkg_preinst() { |
379 | x-modular_pkg_preinst() { |
| 294 | if [[ -n "${FONT}" ]]; then |
380 | # We no longer do anything here, but we can't remove it from the API |
| 295 | discover_font_dirs |
381 | : |
| 296 | fi |
|
|
| 297 | } |
382 | } |
| 298 | |
383 | |
| 299 | x-modular_pkg_postinst() { |
384 | x-modular_pkg_postinst() { |
| 300 | if [[ -n "${FONT}" ]]; then |
385 | if [[ -n "${FONT}" ]]; then |
| 301 | setup_fonts |
386 | setup_fonts |
| … | |
… | |
| 303 | } |
388 | } |
| 304 | |
389 | |
| 305 | x-modular_pkg_postrm() { |
390 | x-modular_pkg_postrm() { |
| 306 | if [[ -n "${FONT}" ]]; then |
391 | if [[ -n "${FONT}" ]]; then |
| 307 | cleanup_fonts |
392 | cleanup_fonts |
|
|
393 | font_pkg_postrm |
| 308 | fi |
394 | fi |
| 309 | } |
395 | } |
| 310 | |
396 | |
| 311 | cleanup_fonts() { |
397 | cleanup_fonts() { |
| 312 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
398 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
| … | |
… | |
| 342 | eend 0 |
428 | eend 0 |
| 343 | done |
429 | done |
| 344 | } |
430 | } |
| 345 | |
431 | |
| 346 | setup_fonts() { |
432 | setup_fonts() { |
| 347 | if [[ ! -n "${FONT_DIRS}" ]]; then |
433 | if [[ ! -n "${FONT_DIR}" ]]; then |
| 348 | msg="FONT_DIRS is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
434 | msg="FONT_DIR is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
| 349 | eerror "${msg}" |
435 | eerror "${msg}" |
| 350 | die "${msg}" |
436 | die "${msg}" |
| 351 | fi |
437 | fi |
| 352 | |
438 | |
| 353 | create_fonts_scale |
439 | create_fonts_scale |
| 354 | create_fonts_dir |
440 | create_fonts_dir |
| 355 | fix_font_permissions |
441 | fix_font_permissions |
| 356 | create_font_cache |
442 | create_font_cache |
| 357 | } |
443 | } |
| 358 | |
444 | |
|
|
445 | remove_font_metadata() { |
|
|
446 | local DIR |
|
|
447 | for DIR in ${FONT_DIR}; do |
|
|
448 | if [[ "${DIR}" != "Speedo" ]] && \ |
|
|
449 | [[ "${DIR}" != "CID" ]] ; then |
|
|
450 | # Delete font metadata files |
|
|
451 | # fonts.scale, fonts.dir, fonts.cache-1 |
|
|
452 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
|
|
453 | fi |
|
|
454 | done |
|
|
455 | } |
|
|
456 | |
|
|
457 | # Installs device-to-driver mappings for system-config-display |
|
|
458 | # and anything else that uses hwdata |
|
|
459 | install_driver_hwdata() { |
|
|
460 | insinto /usr/share/hwdata/videoaliases |
|
|
461 | for i in "${FILESDIR}"/*.xinf; do |
|
|
462 | # We need this for the case when none exist, |
|
|
463 | # so *.xinf doesn't expand |
|
|
464 | if [[ -e $i ]]; then |
|
|
465 | doins $i |
|
|
466 | fi |
|
|
467 | done |
|
|
468 | } |
|
|
469 | |
| 359 | discover_font_dirs() { |
470 | discover_font_dirs() { |
| 360 | pushd ${IMAGE}/usr/share/fonts |
471 | FONT_DIRS="${FONT_DIR}" |
| 361 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
|
|
| 362 | FONT_DIRS="$(echo ${FONT_DIRS} | sed -e 's:./::g')" |
|
|
| 363 | popd |
|
|
| 364 | } |
472 | } |
| 365 | |
473 | |
| 366 | create_fonts_scale() { |
474 | create_fonts_scale() { |
| 367 | ebegin "Creating fonts.scale files" |
475 | ebegin "Creating fonts.scale files" |
| 368 | local x |
476 | local x |
| 369 | for FONT_DIR in ${FONT_DIRS}; do |
477 | for DIR in ${FONT_DIR}; do |
| 370 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
478 | x=${ROOT}/usr/share/fonts/${DIR} |
| 371 | [[ -z "$(ls ${x}/)" ]] && continue |
479 | [[ -z "$(ls ${x}/)" ]] && continue |
| 372 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
480 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 373 | |
481 | |
| 374 | # Only generate .scale files if truetype, opentype or type1 |
482 | # Only generate .scale files if truetype, opentype or type1 |
| 375 | # fonts are present ... |
483 | # fonts are present ... |
| 376 | |
484 | |
| 377 | # First truetype (ttf,ttc) |
|
|
| 378 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
|
|
| 379 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
485 | # NOTE: There is no way to regenerate Speedo/CID fonts.scale |
| 380 | # <spyderous@gentoo.org> 2 August 2004 |
486 | # <dberkholz@gentoo.org> 2 August 2004 |
| 381 | if [[ "${x/encodings}" = "${x}" ]] \ |
487 | if [[ "${x/encodings}" = "${x}" ]] \ |
| 382 | && [[ -n "$(find ${x} -iname '*.tt[cf]' -print)" ]]; then |
|
|
| 383 | if [[ -x ${ROOT}/usr/bin/ttmkfdir ]]; then |
|
|
| 384 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
|
|
| 385 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
|
|
| 386 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
|
|
| 387 | -o ${x}/fonts.scale -d ${x} |
|
|
| 388 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
|
|
| 389 | local ttmkfdir_return=$? |
|
|
| 390 | else |
|
|
| 391 | # We didn't use ttmkfdir at all |
|
|
| 392 | local ttmkfdir_return=2 |
|
|
| 393 | fi |
|
|
| 394 | if [[ ${ttmkfdir_return} -ne 0 ]]; then |
|
|
| 395 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
|
|
| 396 | ${ROOT}/usr/bin/mkfontscale \ |
|
|
| 397 | -a /usr/share/fonts/encodings/encodings.dir \ |
|
|
| 398 | -- ${x} |
|
|
| 399 | fi |
|
|
| 400 | # Next type1 and opentype (pfa,pfb,otf,otc) |
|
|
| 401 | elif [[ "${x/encodings}" = "${x}" ]] \ |
|
|
| 402 | && [[ -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]]; then |
488 | && [[ -n "$(find ${x} -iname '*.[pot][ft][abcf]' -print)" ]]; then |
| 403 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
489 | mkfontscale \ |
| 404 | ${ROOT}/usr/bin/mkfontscale \ |
|
|
| 405 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
490 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
| 406 | -- ${x} |
491 | -- ${x} |
| 407 | fi |
492 | fi |
| 408 | done |
493 | done |
| 409 | eend 0 |
494 | eend 0 |
| 410 | } |
495 | } |
| 411 | |
496 | |
| 412 | create_fonts_dir() { |
497 | create_fonts_dir() { |
| 413 | ebegin "Generating fonts.dir files" |
498 | ebegin "Generating fonts.dir files" |
| 414 | for FONT_DIR in ${FONT_DIRS}; do |
499 | for DIR in ${FONT_DIR}; do |
| 415 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
500 | x=${ROOT}/usr/share/fonts/${DIR} |
| 416 | [[ -z "$(ls ${x}/)" ]] && continue |
501 | [[ -z "$(ls ${x}/)" ]] && continue |
| 417 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
502 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 418 | |
503 | |
| 419 | if [[ "${x/encodings}" = "${x}" ]]; then |
504 | if [[ "${x/encodings}" = "${x}" ]]; then |
| 420 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
505 | mkfontdir \ |
| 421 | ${ROOT}/usr/bin/mkfontdir \ |
|
|
| 422 | -e ${ROOT}/usr/share/fonts/encodings \ |
506 | -e ${ROOT}/usr/share/fonts/encodings \ |
| 423 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
507 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
| 424 | -- ${x} |
508 | -- ${x} |
| 425 | fi |
509 | fi |
| 426 | done |
510 | done |
| 427 | eend 0 |
511 | eend 0 |
| 428 | } |
512 | } |
| 429 | |
513 | |
| 430 | fix_font_permissions() { |
514 | fix_font_permissions() { |
| 431 | ebegin "Fixing permissions" |
515 | ebegin "Fixing permissions" |
| 432 | for FONT_DIR in ${FONT_DIRS}; do |
516 | for DIR in ${FONT_DIR}; do |
| 433 | find ${ROOT}/usr/share/fonts/${FONT_DIR} -type f -name 'font.*' \ |
517 | find ${ROOT}/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
| 434 | -exec chmod 0644 {} \; |
518 | -exec chmod 0644 {} \; |
| 435 | done |
519 | done |
| 436 | eend 0 |
520 | eend 0 |
| 437 | } |
521 | } |
| 438 | |
522 | |
| 439 | create_font_cache() { |
523 | create_font_cache() { |
| 440 | # danarmak found out that fc-cache should be run AFTER all the above |
524 | font_pkg_postinst |
| 441 | # stuff, as otherwise the cache is invalid, and has to be run again |
|
|
| 442 | # as root anyway |
|
|
| 443 | if [[ -x ${ROOT}/usr/bin/fc-cache ]]; then |
|
|
| 444 | ebegin "Creating FC font cache" |
|
|
| 445 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
|
|
| 446 | eend 0 |
|
|
| 447 | fi |
|
|
| 448 | } |
525 | } |
|
|
526 | |
|
|
527 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |