| 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.97 2008/05/09 07:18:19 dberkholz Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.116 2009/10/31 23:08:25 dirtyepic Exp $ |
| 4 | # |
4 | # |
| 5 | # @ECLASS: x-modular.eclass |
5 | # @ECLASS: x-modular.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Donnie Berkholz <dberkholz@gentoo.org>, x11@gentoo.org |
7 | # Donnie Berkholz <dberkholz@gentoo.org>, x11@gentoo.org |
| 8 | # @BLURB: Reduces code duplication in the modularized X11 ebuilds. |
8 | # @BLURB: Reduces code duplication in the modularized X11 ebuilds. |
| … | |
… | |
| 15 | # All you need to do in a basic ebuild is inherit this eclass and set |
15 | # All you need to do in a basic ebuild is inherit this eclass and set |
| 16 | # DESCRIPTION, KEYWORDS and RDEPEND/DEPEND. If your package is hosted |
16 | # DESCRIPTION, KEYWORDS and RDEPEND/DEPEND. If your package is hosted |
| 17 | # with the other X packages, you don't need to set SRC_URI. Pretty much |
17 | # with the other X packages, you don't need to set SRC_URI. Pretty much |
| 18 | # everything else should be automatic. |
18 | # everything else should be automatic. |
| 19 | |
19 | |
|
|
20 | if [[ ${PV} = 9999* ]]; then |
|
|
21 | GIT_ECLASS="git" |
|
|
22 | SNAPSHOT="yes" |
|
|
23 | SRC_URI="" |
|
|
24 | fi |
|
|
25 | |
|
|
26 | # If we're a font package, but not the font.alias one |
|
|
27 | FONT_ECLASS="" |
|
|
28 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
29 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
|
|
30 | && [[ "${PN}" != "font-alias" ]] \ |
|
|
31 | && [[ "${PN}" != "font-util" ]]; then |
|
|
32 | # Activate font code in the rest of the eclass |
|
|
33 | FONT="yes" |
|
|
34 | |
|
|
35 | # Whether to inherit the font eclass |
|
|
36 | FONT_ECLASS="font" |
|
|
37 | fi |
|
|
38 | |
|
|
39 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
|
|
40 | ${FONT_ECLASS} ${GIT_ECLASS} |
|
|
41 | |
|
|
42 | EXPORTED_FUNCTIONS="src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm" |
|
|
43 | |
|
|
44 | case "${EAPI:-0}" in |
|
|
45 | 0|1) |
|
|
46 | ;; |
|
|
47 | 2) |
|
|
48 | EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare src_configure" |
|
|
49 | ;; |
|
|
50 | *) |
|
|
51 | die "Unknown EAPI ${EAPI}" |
|
|
52 | ;; |
|
|
53 | esac |
|
|
54 | |
|
|
55 | # exports must be ALWAYS after inherit |
|
|
56 | EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS} |
|
|
57 | |
| 20 | # @ECLASS-VARIABLE: XDIR |
58 | # @ECLASS-VARIABLE: XDIR |
| 21 | # @DESCRIPTION: |
59 | # @DESCRIPTION: |
| 22 | # Directory prefix to use for everything. If you want to install to a |
60 | # Directory prefix to use for everything. If you want to install to a |
| 23 | # non-default prefix (e.g., /opt/xorg), change XDIR. This has not been |
61 | # non-default prefix (e.g., /opt/xorg), change XDIR. This has not been |
| 24 | # recently tested. You may need to uncomment the setting of datadir and |
62 | # recently tested. You may need to uncomment the setting of datadir and |
| … | |
… | |
| 35 | # If set to 'yes' and configure.ac exists, eautoreconf will run. Set |
73 | # If set to 'yes' and configure.ac exists, eautoreconf will run. Set |
| 36 | # before inheriting this eclass. |
74 | # before inheriting this eclass. |
| 37 | SNAPSHOT="no" |
75 | SNAPSHOT="no" |
| 38 | fi |
76 | fi |
| 39 | |
77 | |
| 40 | if [[ ${PV} = 9999* ]]; then |
|
|
| 41 | GIT_ECLASS="git" |
|
|
| 42 | SNAPSHOT="yes" |
|
|
| 43 | SRC_URI="" |
|
|
| 44 | fi |
|
|
| 45 | |
|
|
| 46 | # Set up SRC_URI for individual modular releases |
78 | # Set up SRC_URI for individual modular releases |
| 47 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
79 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
| 48 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then |
80 | # @ECLASS-VARIABLE: MODULE |
|
|
81 | # @DESCRIPTION: |
|
|
82 | # The subdirectory to download source from. Possible settings are app, |
|
|
83 | # doc, data, util, driver, font, lib, proto, xserver. Set above the |
|
|
84 | # inherit to override the default autoconfigured module. |
|
|
85 | if [[ -z ${MODULE} ]]; then |
| 49 | MODULE="app" |
86 | MODULE="" |
| 50 | elif [[ ${CATEGORY} = app-doc ]]; then |
87 | case ${CATEGORY} in |
| 51 | MODULE="doc" |
88 | app-doc) MODULE="doc" ;; |
| 52 | # x11-misc contains data and util, x11-themes contains data |
89 | media-fonts) MODULE="font" ;; |
| 53 | elif [[ ${CATEGORY} = x11-misc ]] || [[ ${CATEGORY} = x11-themes ]]; then |
90 | x11-apps|x11-wm) MODULE="app" ;; |
| 54 | if [[ ${PN} == xbitmaps || ${PN} == xcursor-themes || ${PN} == xkbdata ]]; then |
91 | x11-misc|x11-themes) MODULE="util" ;; |
| 55 | MODULE="data" |
92 | x11-drivers) MODULE="driver" ;; |
| 56 | else |
93 | x11-base) MODULE="xserver" ;; |
| 57 | MODULE="util" |
94 | x11-proto) MODULE="proto" ;; |
| 58 | fi |
95 | x11-libs) MODULE="lib" ;; |
| 59 | elif [[ ${CATEGORY} = x11-drivers ]]; then |
96 | esac |
| 60 | MODULE="driver" |
|
|
| 61 | elif [[ ${CATEGORY} = media-fonts ]]; then |
|
|
| 62 | MODULE="font" |
|
|
| 63 | elif [[ ${CATEGORY} = x11-libs ]]; then |
|
|
| 64 | MODULE="lib" |
|
|
| 65 | elif [[ ${CATEGORY} = x11-proto ]]; then |
|
|
| 66 | MODULE="proto" |
|
|
| 67 | elif [[ ${CATEGORY} = x11-base ]]; then |
|
|
| 68 | MODULE="xserver" |
|
|
| 69 | fi |
97 | fi |
| 70 | |
98 | |
| 71 | if [[ -n ${GIT_ECLASS} ]]; then |
99 | if [[ -n ${GIT_ECLASS} ]]; then |
| 72 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${MODULE}/${PN}" |
100 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${MODULE}/${PN}" |
| 73 | else |
101 | else |
| … | |
… | |
| 75 | fi |
103 | fi |
| 76 | |
104 | |
| 77 | SLOT="0" |
105 | SLOT="0" |
| 78 | |
106 | |
| 79 | # Set the license for the package. This can be overridden by setting |
107 | # Set the license for the package. This can be overridden by setting |
| 80 | # LICENSE after the inherit. |
108 | # LICENSE after the inherit. Nearly all FreeDesktop-hosted X packages |
| 81 | LICENSE=${PN} |
109 | # are under the MIT license. (This is what Red Hat does in their rpms) |
|
|
110 | LICENSE="MIT" |
| 82 | |
111 | |
| 83 | # Set up shared dependencies |
112 | # Set up shared dependencies |
| 84 | if [[ -n "${SNAPSHOT}" ]]; then |
113 | if [[ -n "${SNAPSHOT}" ]]; then |
| 85 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
114 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 86 | DEPEND="${DEPEND} |
115 | DEPEND="${DEPEND} |
| … | |
… | |
| 88 | >=sys-devel/m4-1.4" |
117 | >=sys-devel/m4-1.4" |
| 89 | WANT_AUTOCONF="latest" |
118 | WANT_AUTOCONF="latest" |
| 90 | WANT_AUTOMAKE="latest" |
119 | WANT_AUTOMAKE="latest" |
| 91 | fi |
120 | fi |
| 92 | |
121 | |
| 93 | # If we're a font package, but not the font.alias one |
122 | if [[ -n "${FONT}" ]]; then |
| 94 | FONT_ECLASS="" |
|
|
| 95 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
| 96 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
|
|
| 97 | && [[ "${PN}" != "font-alias" ]] \ |
|
|
| 98 | && [[ "${PN}" != "font-util" ]]; then |
|
|
| 99 | # Activate font code in the rest of the eclass |
|
|
| 100 | FONT="yes" |
|
|
| 101 | |
|
|
| 102 | # Whether to inherit the font eclass |
|
|
| 103 | FONT_ECLASS="font" |
|
|
| 104 | |
|
|
| 105 | RDEPEND="${RDEPEND} |
123 | RDEPEND="${RDEPEND} |
| 106 | media-fonts/encodings |
124 | media-fonts/encodings |
| 107 | x11-apps/mkfontscale |
125 | x11-apps/mkfontscale |
| 108 | x11-apps/mkfontdir" |
126 | x11-apps/mkfontdir" |
| 109 | PDEPEND="${PDEPEND} |
127 | PDEPEND="${PDEPEND} |
| … | |
… | |
| 128 | FONT_DIR=${FONT_DIR/ttf/TTF} |
146 | FONT_DIR=${FONT_DIR/ttf/TTF} |
| 129 | FONT_DIR=${FONT_DIR/otf/OTF} |
147 | FONT_DIR=${FONT_DIR/otf/OTF} |
| 130 | FONT_DIR=${FONT_DIR/type1/Type1} |
148 | FONT_DIR=${FONT_DIR/type1/Type1} |
| 131 | FONT_DIR=${FONT_DIR/speedo/Speedo} |
149 | FONT_DIR=${FONT_DIR/speedo/Speedo} |
| 132 | |
150 | |
| 133 | # Set up configure option |
151 | # Set up configure options, wrapped so ebuilds can override if need be |
|
|
152 | if [[ -z ${FONT_OPTIONS} ]]; then |
| 134 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
153 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
|
|
154 | fi |
| 135 | |
155 | |
| 136 | if [[ -n "${FONT}" ]]; then |
156 | if [[ -n "${FONT}" ]]; then |
| 137 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]] || [[ ${PN##*-} = cyrillic ]]; then |
157 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]] || [[ ${PN##*-} = cyrillic ]]; then |
| 138 | IUSE="${IUSE} nls" |
158 | IUSE="${IUSE} nls" |
| 139 | fi |
159 | fi |
| … | |
… | |
| 172 | RDEPEND="${RDEPEND} |
192 | RDEPEND="${RDEPEND} |
| 173 | !<=x11-base/xorg-x11-6.9" |
193 | !<=x11-base/xorg-x11-6.9" |
| 174 | # Provides virtual/x11 for temporary use until packages are ported |
194 | # Provides virtual/x11 for temporary use until packages are ported |
| 175 | # x11-base/x11-env" |
195 | # x11-base/x11-env" |
| 176 | |
196 | |
| 177 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
|
|
| 178 | ${FONT_ECLASS} ${GIT_ECLASS} |
|
|
| 179 | |
|
|
| 180 | # @FUNCTION: x-modular_specs_check |
197 | # @FUNCTION: x-modular_specs_check |
| 181 | # @USAGE: |
198 | # @USAGE: |
| 182 | # @DESCRIPTION: |
199 | # @DESCRIPTION: |
| 183 | # Make any necessary changes related to gcc specs (generally hardened) |
200 | # Make any necessary changes related to gcc specs (generally hardened) |
| 184 | x-modular_specs_check() { |
201 | x-modular_specs_check() { |
| … | |
… | |
| 194 | # @DESCRIPTION: |
211 | # @DESCRIPTION: |
| 195 | # Ensures the server supports DRI if building a driver with DRI support |
212 | # Ensures the server supports DRI if building a driver with DRI support |
| 196 | x-modular_dri_check() { |
213 | x-modular_dri_check() { |
| 197 | # (#120057) Enabling DRI in drivers requires that the server was built with |
214 | # (#120057) Enabling DRI in drivers requires that the server was built with |
| 198 | # support for it |
215 | # support for it |
|
|
216 | # Starting with xorg-server 1.5.3, DRI support is always enabled unless |
|
|
217 | # USE=minimal is set (see bug #252084) |
| 199 | if [[ -n "${DRIVER}" ]]; then |
218 | if [[ -n "${DRIVER}" ]]; then |
| 200 | if has dri ${IUSE} && use dri; then |
219 | if has dri ${IUSE} && use dri; then |
| 201 | einfo "Checking for direct rendering capabilities ..." |
220 | einfo "Checking for direct rendering capabilities ..." |
|
|
221 | if has_version '>=x11-base/xorg-server-1.5.3'; then |
|
|
222 | if built_with_use x11-base/xorg-server minimal; then |
|
|
223 | die "You must build x11-base/xorg-server with USE=-minimal." |
|
|
224 | fi |
|
|
225 | else |
| 202 | if ! built_with_use x11-base/xorg-server dri; then |
226 | if ! built_with_use x11-base/xorg-server dri; then |
| 203 | die "You must build x11-base/xorg-server with USE=dri." |
227 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
228 | fi |
| 204 | fi |
229 | fi |
| 205 | fi |
230 | fi |
| 206 | fi |
231 | fi |
| 207 | } |
232 | } |
| 208 | |
233 | |
| … | |
… | |
| 231 | if [[ -n ${GIT_ECLASS} ]]; then |
256 | if [[ -n ${GIT_ECLASS} ]]; then |
| 232 | git_src_unpack |
257 | git_src_unpack |
| 233 | else |
258 | else |
| 234 | unpack ${A} |
259 | unpack ${A} |
| 235 | fi |
260 | fi |
| 236 | cd ${S} |
261 | cd "${S}" |
| 237 | |
262 | |
| 238 | if [[ -n ${FONT_OPTIONS} ]]; then |
263 | if [[ -n ${FONT_OPTIONS} ]]; then |
| 239 | einfo "Detected font directory: ${FONT_DIR}" |
264 | einfo "Detected font directory: ${FONT_DIR}" |
| 240 | fi |
265 | fi |
| 241 | } |
266 | } |
| … | |
… | |
| 291 | # Joshua Baergen - October 23, 2005 |
316 | # Joshua Baergen - October 23, 2005 |
| 292 | # Fix shared lib issues on MIPS, FBSD, etc etc |
317 | # Fix shared lib issues on MIPS, FBSD, etc etc |
| 293 | elibtoolize |
318 | elibtoolize |
| 294 | } |
319 | } |
| 295 | |
320 | |
|
|
321 | # @FUNCTION: x-modular_src_prepare |
|
|
322 | # @USAGE: |
|
|
323 | # @DESCRIPTION: |
|
|
324 | # Prepare a package after unpacking, performing all X-related tasks. |
|
|
325 | x-modular_src_prepare() { |
|
|
326 | [[ -n ${GIT_ECLASS} ]] && has src_prepare ${EXPORTED_FUNCTIONS} \ |
|
|
327 | && git_src_prepare |
|
|
328 | x-modular_patch_source |
|
|
329 | x-modular_reconf_source |
|
|
330 | } |
|
|
331 | |
| 296 | # @FUNCTION: x-modular_src_unpack |
332 | # @FUNCTION: x-modular_src_unpack |
| 297 | # @USAGE: |
333 | # @USAGE: |
| 298 | # @DESCRIPTION: |
334 | # @DESCRIPTION: |
| 299 | # Unpack a package, performing all X-related tasks. |
335 | # Unpack a package, performing all X-related tasks. |
| 300 | x-modular_src_unpack() { |
336 | x-modular_src_unpack() { |
| 301 | x-modular_specs_check |
337 | x-modular_specs_check |
| 302 | x-modular_server_supports_drivers_check |
338 | x-modular_server_supports_drivers_check |
| 303 | x-modular_dri_check |
339 | x-modular_dri_check |
| 304 | x-modular_unpack_source |
340 | x-modular_unpack_source |
| 305 | x-modular_patch_source |
341 | has src_prepare ${EXPORTED_FUNCTIONS} || x-modular_src_prepare |
| 306 | x-modular_reconf_source |
|
|
| 307 | } |
342 | } |
| 308 | |
343 | |
| 309 | # @FUNCTION: x-modular_font_configure |
344 | # @FUNCTION: x-modular_font_configure |
| 310 | # @USAGE: |
345 | # @USAGE: |
| 311 | # @DESCRIPTION: |
346 | # @DESCRIPTION: |
| 312 | # If a font package, perform any necessary configuration steps |
347 | # If a font package, perform any necessary configuration steps |
| 313 | x-modular_font_configure() { |
348 | x-modular_font_configure() { |
| 314 | if [[ -n "${FONT}" ]]; then |
349 | if [[ -n "${FONT}" ]]; then |
| 315 | # Might be worth adding an option to configure your desired font |
350 | # Might be worth adding an option to configure your desired font |
| 316 | # and exclude all others. Also, should this USE be nls or minimal? |
351 | # and exclude all others. Also, should this USE be nls or minimal? |
| 317 | if ! use nls; then |
352 | if has nls ${IUSE//+} && ! use nls; then |
| 318 | FONT_OPTIONS="${FONT_OPTIONS} |
353 | FONT_OPTIONS="${FONT_OPTIONS} |
| 319 | --disable-iso8859-2 |
354 | --disable-iso8859-2 |
| 320 | --disable-iso8859-3 |
355 | --disable-iso8859-3 |
| 321 | --disable-iso8859-4 |
356 | --disable-iso8859-4 |
| 322 | --disable-iso8859-5 |
357 | --disable-iso8859-5 |
| … | |
… | |
| 359 | x-modular_debug_setup |
394 | x-modular_debug_setup |
| 360 | |
395 | |
| 361 | # @VARIABLE: CONFIGURE_OPTIONS |
396 | # @VARIABLE: CONFIGURE_OPTIONS |
| 362 | # @DESCRIPTION: |
397 | # @DESCRIPTION: |
| 363 | # Any options to pass to configure |
398 | # Any options to pass to configure |
| 364 | [[ -n ${CONFIGURE_OPTIONTS} ]] |
399 | [[ -n ${CONFIGURE_OPTIONS} ]] |
| 365 | |
400 | |
| 366 | # If prefix isn't set here, .pc files cause problems |
401 | # If prefix isn't set here, .pc files cause problems |
| 367 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
402 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
| 368 | econf --prefix=${XDIR} \ |
403 | econf --prefix=${XDIR} \ |
| 369 | --datadir=${XDIR}/share \ |
404 | --datadir=${XDIR}/share \ |
| … | |
… | |
| 379 | # Run make. |
414 | # Run make. |
| 380 | x-modular_src_make() { |
415 | x-modular_src_make() { |
| 381 | emake || die "emake failed" |
416 | emake || die "emake failed" |
| 382 | } |
417 | } |
| 383 | |
418 | |
| 384 | # @FUNCTION: x-modular_src_configure |
419 | # @FUNCTION: x-modular_src_compile |
| 385 | # @USAGE: |
420 | # @USAGE: |
| 386 | # @DESCRIPTION: |
421 | # @DESCRIPTION: |
| 387 | # Compile a package, performing all X-related tasks. |
422 | # Compile a package, performing all X-related tasks. |
| 388 | x-modular_src_compile() { |
423 | x-modular_src_compile() { |
| 389 | x-modular_src_configure |
424 | has src_configure ${EXPORTED_FUNCTIONS} || x-modular_src_configure |
| 390 | x-modular_src_make |
425 | x-modular_src_make |
| 391 | } |
426 | } |
| 392 | |
427 | |
| 393 | # @FUNCTION: x-modular_src_install |
428 | # @FUNCTION: x-modular_src_install |
| 394 | # @USAGE: |
429 | # @USAGE: |
| 395 | # @DESCRIPTION: |
430 | # @DESCRIPTION: |
| 396 | # Install a built package to ${D}, performing any necessary steps. |
431 | # Install a built package to ${D}, performing any necessary steps. |
| 397 | # Creates a ChangeLog from git if using live ebuilds. |
432 | # Creates a ChangeLog from git if using live ebuilds. |
| 398 | x-modular_src_install() { |
433 | x-modular_src_install() { |
| 399 | # Install everything to ${XDIR} |
434 | # Install everything to ${XDIR} |
|
|
435 | if [[ ${CATEGORY} = x11-proto ]]; then |
| 400 | make \ |
436 | make \ |
|
|
437 | ${PN/proto/}docdir=/usr/share/doc/${PF} \ |
| 401 | DESTDIR="${D}" \ |
438 | DESTDIR="${D}" \ |
| 402 | install |
439 | install \ |
|
|
440 | || die |
|
|
441 | else |
|
|
442 | make \ |
|
|
443 | docdir=/usr/share/doc/${PF} \ |
|
|
444 | DESTDIR="${D}" \ |
|
|
445 | install \ |
|
|
446 | || die |
|
|
447 | fi |
| 403 | # Shouldn't be necessary in XDIR=/usr |
448 | # Shouldn't be necessary in XDIR=/usr |
| 404 | # einstall forces datadir, so we need to re-force it |
449 | # einstall forces datadir, so we need to re-force it |
| 405 | # datadir=${XDIR}/share \ |
450 | # datadir=${XDIR}/share \ |
| 406 | # mandir=${XDIR}/share/man \ |
451 | # mandir=${XDIR}/share/man \ |
| 407 | |
452 | |
| … | |
… | |
| 410 | git log ${GIT_TREE} > "${S}"/ChangeLog |
455 | git log ${GIT_TREE} > "${S}"/ChangeLog |
| 411 | popd |
456 | popd |
| 412 | fi |
457 | fi |
| 413 | |
458 | |
| 414 | if [[ -e ${S}/ChangeLog ]]; then |
459 | if [[ -e ${S}/ChangeLog ]]; then |
| 415 | dodoc ${S}/ChangeLog |
460 | dodoc "${S}"/ChangeLog |
| 416 | fi |
461 | fi |
| 417 | # @VARIABLE: DOCS |
462 | # @VARIABLE: DOCS |
| 418 | # @DESCRIPTION: |
463 | # @DESCRIPTION: |
| 419 | # Any documentation to install |
464 | # Any documentation to install |
| 420 | [[ -n ${DOCS} ]] && dodoc ${DOCS} |
465 | [[ -n ${DOCS} ]] && dodoc ${DOCS} |
| 421 | |
466 | |
| 422 | # Make sure docs get compressed |
|
|
| 423 | prepalldocs |
|
|
| 424 | |
|
|
| 425 | # Don't install libtool archives for server modules |
467 | # Don't install libtool archives for server modules |
| 426 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
468 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
| 427 | find ${D}/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
469 | find "${D}"/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
| 428 | | xargs rm -f |
470 | | xargs rm -f |
| 429 | fi |
471 | fi |
| 430 | |
472 | |
| 431 | if [[ -n "${FONT}" ]]; then |
473 | if [[ -n "${FONT}" ]]; then |
| 432 | remove_font_metadata |
474 | remove_font_metadata |
| … | |
… | |
| 472 | # @FUNCTION: cleanup_fonts |
514 | # @FUNCTION: cleanup_fonts |
| 473 | # @USAGE: |
515 | # @USAGE: |
| 474 | # @DESCRIPTION: |
516 | # @DESCRIPTION: |
| 475 | # Get rid of font directories that only contain generated files |
517 | # Get rid of font directories that only contain generated files |
| 476 | cleanup_fonts() { |
518 | cleanup_fonts() { |
| 477 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
519 | local ALLOWED_FILES="encodings.dir fonts.alias fonts.cache-1 fonts.dir fonts.scale" |
| 478 | for DIR in ${FONT_DIR}; do |
520 | for DIR in ${FONT_DIR}; do |
| 479 | unset KEEP_FONTDIR |
521 | unset KEEP_FONTDIR |
| 480 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
522 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
| 481 | |
523 | |
| 482 | ebegin "Checking ${REAL_DIR} for useless files" |
524 | ebegin "Checking ${REAL_DIR} for useless files" |
| … | |
… | |
| 519 | die "${msg}" |
561 | die "${msg}" |
| 520 | fi |
562 | fi |
| 521 | |
563 | |
| 522 | create_fonts_scale |
564 | create_fonts_scale |
| 523 | create_fonts_dir |
565 | create_fonts_dir |
| 524 | fix_font_permissions |
|
|
| 525 | create_font_cache |
566 | create_font_cache |
| 526 | } |
567 | } |
| 527 | |
568 | |
| 528 | # @FUNCTION: remove_font_metadata |
569 | # @FUNCTION: remove_font_metadata |
| 529 | # @USAGE: |
570 | # @USAGE: |
| … | |
… | |
| 535 | for DIR in ${FONT_DIR}; do |
576 | for DIR in ${FONT_DIR}; do |
| 536 | if [[ "${DIR}" != "Speedo" ]] && \ |
577 | if [[ "${DIR}" != "Speedo" ]] && \ |
| 537 | [[ "${DIR}" != "CID" ]] ; then |
578 | [[ "${DIR}" != "CID" ]] ; then |
| 538 | # Delete font metadata files |
579 | # Delete font metadata files |
| 539 | # fonts.scale, fonts.dir, fonts.cache-1 |
580 | # fonts.scale, fonts.dir, fonts.cache-1 |
| 540 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
581 | rm -f "${D}"/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
| 541 | fi |
582 | fi |
| 542 | done |
583 | done |
| 543 | } |
584 | } |
| 544 | |
585 | |
| 545 | # @FUNCTION: install_driver_hwdata |
586 | # @FUNCTION: install_driver_hwdata |
| … | |
… | |
| 584 | # NOTE: There is no way to regenerate Speedo/CID fonts.scale |
625 | # NOTE: There is no way to regenerate Speedo/CID fonts.scale |
| 585 | # <dberkholz@gentoo.org> 2 August 2004 |
626 | # <dberkholz@gentoo.org> 2 August 2004 |
| 586 | if [[ "${x/encodings}" = "${x}" ]] \ |
627 | if [[ "${x/encodings}" = "${x}" ]] \ |
| 587 | && [[ -n "$(find ${x} -iname '*.[pot][ft][abcf]' -print)" ]]; then |
628 | && [[ -n "$(find ${x} -iname '*.[pot][ft][abcf]' -print)" ]]; then |
| 588 | mkfontscale \ |
629 | mkfontscale \ |
| 589 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
630 | -a "${ROOT}"/usr/share/fonts/encodings/encodings.dir \ |
| 590 | -- ${x} |
631 | -- ${x} |
| 591 | fi |
632 | fi |
| 592 | done |
633 | done |
| 593 | eend 0 |
634 | eend 0 |
| 594 | } |
635 | } |
| … | |
… | |
| 604 | [[ -z "$(ls ${x}/)" ]] && continue |
645 | [[ -z "$(ls ${x}/)" ]] && continue |
| 605 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
646 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 606 | |
647 | |
| 607 | if [[ "${x/encodings}" = "${x}" ]]; then |
648 | if [[ "${x/encodings}" = "${x}" ]]; then |
| 608 | mkfontdir \ |
649 | mkfontdir \ |
| 609 | -e ${ROOT}/usr/share/fonts/encodings \ |
650 | -e "${ROOT}"/usr/share/fonts/encodings \ |
| 610 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
651 | -e "${ROOT}"/usr/share/fonts/encodings/large \ |
| 611 | -- ${x} |
652 | -- ${x} |
| 612 | fi |
653 | fi |
| 613 | done |
654 | done |
| 614 | eend 0 |
655 | eend 0 |
| 615 | } |
656 | } |
| 616 | |
657 | |
| 617 | # @FUNCTION: fix_font_permissions |
|
|
| 618 | # @USAGE: |
|
|
| 619 | # @DESCRIPTION: |
|
|
| 620 | # Font files should have 644 permissions. Ensure this is the case. |
|
|
| 621 | fix_font_permissions() { |
|
|
| 622 | ebegin "Fixing permissions" |
|
|
| 623 | for DIR in ${FONT_DIR}; do |
|
|
| 624 | find ${ROOT}/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
|
|
| 625 | -exec chmod 0644 {} \; |
|
|
| 626 | done |
|
|
| 627 | eend 0 |
|
|
| 628 | } |
|
|
| 629 | |
|
|
| 630 | # @FUNCTION: create_font_cache |
658 | # @FUNCTION: create_font_cache |
| 631 | # @USAGE: |
659 | # @USAGE: |
| 632 | # @DESCRIPTION: |
660 | # @DESCRIPTION: |
| 633 | # Create fonts.cache-1 files, used by the new client-side fonts |
661 | # Create fonts.cache-1 files, used by the new client-side fonts |
| 634 | # subsystem. |
662 | # subsystem. |
| 635 | create_font_cache() { |
663 | create_font_cache() { |
| 636 | font_pkg_postinst |
664 | font_pkg_postinst |
| 637 | } |
665 | } |
| 638 | |
|
|
| 639 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
|
|