| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2012 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.107 2009/03/03 16:28:32 remi Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.125 2012/05/02 18:31:45 jdhore Exp $ |
|
|
4 | # |
|
|
5 | # @DEPRECATED |
|
|
6 | # This eclass has been superseded by xorg-2 |
|
|
7 | # Please modify your ebuilds to use that instead |
| 4 | # |
8 | # |
| 5 | # @ECLASS: x-modular.eclass |
9 | # @ECLASS: x-modular.eclass |
| 6 | # @MAINTAINER: |
10 | # @MAINTAINER: |
| 7 | # Donnie Berkholz <dberkholz@gentoo.org>, x11@gentoo.org |
11 | # Donnie Berkholz <dberkholz@gentoo.org> |
|
|
12 | # x11@gentoo.org |
| 8 | # @BLURB: Reduces code duplication in the modularized X11 ebuilds. |
13 | # @BLURB: Reduces code duplication in the modularized X11 ebuilds. |
| 9 | # @DESCRIPTION: |
14 | # @DESCRIPTION: |
| 10 | # This eclass makes trivial X ebuilds possible for apps, fonts, drivers, |
15 | # This eclass makes trivial X ebuilds possible for apps, fonts, drivers, |
| 11 | # and more. Many things that would normally be done in various functions |
16 | # and more. Many things that would normally be done in various functions |
| 12 | # can be accessed by setting variables instead, such as patching, |
17 | # can be accessed by setting variables instead, such as patching, |
| … | |
… | |
| 15 | # All you need to do in a basic ebuild is inherit this eclass and set |
20 | # 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 |
21 | # 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 |
22 | # with the other X packages, you don't need to set SRC_URI. Pretty much |
| 18 | # everything else should be automatic. |
23 | # everything else should be automatic. |
| 19 | |
24 | |
|
|
25 | if [[ ${PV} = 9999* ]]; then |
|
|
26 | GIT_ECLASS="git" |
|
|
27 | SNAPSHOT="yes" |
|
|
28 | SRC_URI="" |
|
|
29 | fi |
|
|
30 | |
|
|
31 | # If we're a font package, but not the font.alias one |
|
|
32 | FONT_ECLASS="" |
|
|
33 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
34 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
|
|
35 | && [[ "${PN}" != "font-alias" ]] \ |
|
|
36 | && [[ "${PN}" != "font-util" ]]; then |
|
|
37 | # Activate font code in the rest of the eclass |
|
|
38 | FONT="yes" |
|
|
39 | |
|
|
40 | # Whether to inherit the font eclass |
|
|
41 | FONT_ECLASS="font" |
|
|
42 | fi |
|
|
43 | |
|
|
44 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
|
|
45 | ${FONT_ECLASS} ${GIT_ECLASS} |
|
|
46 | |
|
|
47 | EXPORTED_FUNCTIONS="src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm" |
|
|
48 | |
|
|
49 | case "${EAPI:-0}" in |
|
|
50 | 0|1) |
|
|
51 | ;; |
|
|
52 | 2) |
|
|
53 | EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare src_configure" |
|
|
54 | ;; |
|
|
55 | *) |
|
|
56 | die "Unknown EAPI ${EAPI}" |
|
|
57 | ;; |
|
|
58 | esac |
|
|
59 | |
|
|
60 | # exports must be ALWAYS after inherit |
|
|
61 | EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS} |
|
|
62 | |
| 20 | # @ECLASS-VARIABLE: XDIR |
63 | # @ECLASS-VARIABLE: XDIR |
| 21 | # @DESCRIPTION: |
64 | # @DESCRIPTION: |
| 22 | # Directory prefix to use for everything. If you want to install to a |
65 | # 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 |
66 | # 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 |
67 | # recently tested. You may need to uncomment the setting of datadir and |
| … | |
… | |
| 27 | XDIR="/usr" |
70 | XDIR="/usr" |
| 28 | |
71 | |
| 29 | IUSE="" |
72 | IUSE="" |
| 30 | HOMEPAGE="http://xorg.freedesktop.org/" |
73 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 31 | |
74 | |
| 32 | if [[ -z ${SNAPSHOT} ]]; then |
|
|
| 33 | # @ECLASS-VARIABLE: SNAPSHOT |
75 | # @ECLASS-VARIABLE: SNAPSHOT |
| 34 | # @DESCRIPTION: |
76 | # @DESCRIPTION: |
| 35 | # If set to 'yes' and configure.ac exists, eautoreconf will run. Set |
77 | # If set to 'yes' and configure.ac exists, eautoreconf will run. Set |
| 36 | # before inheriting this eclass. |
78 | # before inheriting this eclass. |
| 37 | SNAPSHOT="no" |
79 | : ${SNAPSHOT:=no} |
| 38 | fi |
|
|
| 39 | |
|
|
| 40 | if [[ ${PV} = 9999* ]]; then |
|
|
| 41 | GIT_ECLASS="git" |
|
|
| 42 | SNAPSHOT="yes" |
|
|
| 43 | SRC_URI="" |
|
|
| 44 | fi |
|
|
| 45 | |
80 | |
| 46 | # Set up SRC_URI for individual modular releases |
81 | # Set up SRC_URI for individual modular releases |
| 47 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
82 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
| 48 | # @ECLASS-VARIABLE: MODULE |
83 | # @ECLASS-VARIABLE: MODULE |
| 49 | # @DESCRIPTION: |
84 | # @DESCRIPTION: |
| 50 | # The subdirectory to download source from. Possible settings are app, |
85 | # The subdirectory to download source from. Possible settings are app, |
| 51 | # doc, data, util, driver, font, lib, proto, xserver. Set above the |
86 | # doc, data, util, driver, font, lib, proto, xserver. Set above the |
| 52 | # inherit to override the default autoconfigured module. |
87 | # inherit to override the default autoconfigured module. |
| 53 | if [[ -z ${MODULE} ]]; then |
88 | if [[ -z ${MODULE} ]]; then |
| 54 | MODULE="" |
|
|
| 55 | case ${CATEGORY} in |
89 | case ${CATEGORY} in |
| 56 | app-doc) MODULE="doc" ;; |
90 | app-doc) MODULE="doc" ;; |
| 57 | media-fonts) MODULE="font" ;; |
91 | media-fonts) MODULE="font" ;; |
| 58 | x11-apps|x11-wm) MODULE="app" ;; |
92 | x11-apps|x11-wm) MODULE="app" ;; |
| 59 | x11-misc|x11-themes) MODULE="util" ;; |
93 | x11-misc|x11-themes) MODULE="util" ;; |
| … | |
… | |
| 71 | fi |
105 | fi |
| 72 | |
106 | |
| 73 | SLOT="0" |
107 | SLOT="0" |
| 74 | |
108 | |
| 75 | # Set the license for the package. This can be overridden by setting |
109 | # Set the license for the package. This can be overridden by setting |
| 76 | # LICENSE after the inherit. |
110 | # LICENSE after the inherit. Nearly all FreeDesktop-hosted X packages |
| 77 | LICENSE=${PN} |
111 | # are under the MIT license. (This is what Red Hat does in their rpms) |
|
|
112 | LICENSE="MIT" |
| 78 | |
113 | |
| 79 | # Set up shared dependencies |
114 | # Set up shared dependencies |
| 80 | if [[ -n "${SNAPSHOT}" ]]; then |
115 | if [[ -n "${SNAPSHOT}" ]]; then |
| 81 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
116 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 82 | DEPEND="${DEPEND} |
117 | DEPEND="${DEPEND} |
| … | |
… | |
| 84 | >=sys-devel/m4-1.4" |
119 | >=sys-devel/m4-1.4" |
| 85 | WANT_AUTOCONF="latest" |
120 | WANT_AUTOCONF="latest" |
| 86 | WANT_AUTOMAKE="latest" |
121 | WANT_AUTOMAKE="latest" |
| 87 | fi |
122 | fi |
| 88 | |
123 | |
| 89 | # If we're a font package, but not the font.alias one |
124 | if [[ -n "${FONT}" ]]; then |
| 90 | FONT_ECLASS="" |
|
|
| 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 | # Whether to inherit the font eclass |
|
|
| 99 | FONT_ECLASS="font" |
|
|
| 100 | |
|
|
| 101 | RDEPEND="${RDEPEND} |
125 | RDEPEND="${RDEPEND} |
| 102 | media-fonts/encodings |
126 | media-fonts/encodings |
| 103 | x11-apps/mkfontscale |
127 | x11-apps/mkfontscale |
| 104 | x11-apps/mkfontdir" |
128 | x11-apps/mkfontdir" |
| 105 | PDEPEND="${PDEPEND} |
129 | PDEPEND="${PDEPEND} |
| 106 | media-fonts/font-alias" |
130 | media-fonts/font-alias" |
| 107 | |
131 | |
| 108 | # Starting with 7.0RC3, we can specify the font directory |
132 | # Starting with 7.0RC3, we can specify the font directory |
| 109 | # But oddly, we can't do the same for encodings or font-alias |
133 | # But oddly, we can't do the same for encodings or font-alias |
| 110 | |
134 | |
| 111 | # Wrap in `if` so ebuilds can set it too |
|
|
| 112 | if [[ -z ${FONT_DIR} ]]; then |
|
|
| 113 | # @ECLASS-VARIABLE: FONT_DIR |
135 | # @ECLASS-VARIABLE: FONT_DIR |
| 114 | # @DESCRIPTION: |
136 | # @DESCRIPTION: |
| 115 | # If you're creating a font package and the suffix of PN is not equal to |
137 | # If you're creating a font package and the suffix of PN is not equal to |
| 116 | # the subdirectory of /usr/share/fonts/ it should install into, set |
138 | # the subdirectory of /usr/share/fonts/ it should install into, set |
| 117 | # FONT_DIR to that directory or directories. Set before inheriting this |
139 | # FONT_DIR to that directory or directories. Set before inheriting this |
| 118 | # eclass. |
140 | # eclass. |
| 119 | FONT_DIR=${PN##*-} |
141 | : ${FONT_DIR:=${PN##*-}} |
| 120 | |
|
|
| 121 | fi |
|
|
| 122 | |
142 | |
| 123 | # Fix case of font directories |
143 | # Fix case of font directories |
| 124 | FONT_DIR=${FONT_DIR/ttf/TTF} |
144 | FONT_DIR=${FONT_DIR/ttf/TTF} |
| 125 | FONT_DIR=${FONT_DIR/otf/OTF} |
145 | FONT_DIR=${FONT_DIR/otf/OTF} |
| 126 | FONT_DIR=${FONT_DIR/type1/Type1} |
146 | FONT_DIR=${FONT_DIR/type1/Type1} |
| 127 | FONT_DIR=${FONT_DIR/speedo/Speedo} |
147 | FONT_DIR=${FONT_DIR/speedo/Speedo} |
| 128 | |
148 | |
| 129 | # Set up configure option |
149 | # Set up configure options, wrapped so ebuilds can override if need be |
|
|
150 | if [[ -z ${FONT_OPTIONS} ]]; then |
| 130 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
151 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
|
|
152 | fi |
| 131 | |
153 | |
| 132 | if [[ -n "${FONT}" ]]; then |
154 | if [[ -n "${FONT}" ]]; then |
| 133 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]] || [[ ${PN##*-} = cyrillic ]]; then |
155 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]] || [[ ${PN##*-} = cyrillic ]]; then |
| 134 | IUSE="${IUSE} nls" |
156 | IUSE="${IUSE} nls" |
| 135 | fi |
157 | fi |
| … | |
… | |
| 155 | DEBUGGABLE="yes" |
177 | DEBUGGABLE="yes" |
| 156 | IUSE="${IUSE} debug" |
178 | IUSE="${IUSE} debug" |
| 157 | fi |
179 | fi |
| 158 | |
180 | |
| 159 | DEPEND="${DEPEND} |
181 | DEPEND="${DEPEND} |
| 160 | >=dev-util/pkgconfig-0.18" |
182 | virtual/pkgconfig" |
| 161 | |
183 | |
| 162 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
184 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
| 163 | DEPEND="${DEPEND} |
185 | DEPEND="${DEPEND} |
| 164 | >=x11-misc/util-macros-0.99.2 |
186 | >=x11-misc/util-macros-1.3.0" |
| 165 | >=sys-devel/binutils-2.16.1-r3" |
|
|
| 166 | fi |
187 | fi |
| 167 | |
188 | |
| 168 | RDEPEND="${RDEPEND} |
189 | RDEPEND="${RDEPEND} |
| 169 | !<=x11-base/xorg-x11-6.9" |
190 | !<=x11-base/xorg-x11-6.9" |
| 170 | # Provides virtual/x11 for temporary use until packages are ported |
191 | # Provides virtual/x11 for temporary use until packages are ported |
| 171 | # x11-base/x11-env" |
192 | # x11-base/x11-env" |
| 172 | |
|
|
| 173 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
|
|
| 174 | ${FONT_ECLASS} ${GIT_ECLASS} |
|
|
| 175 | |
193 | |
| 176 | # @FUNCTION: x-modular_specs_check |
194 | # @FUNCTION: x-modular_specs_check |
| 177 | # @USAGE: |
195 | # @USAGE: |
| 178 | # @DESCRIPTION: |
196 | # @DESCRIPTION: |
| 179 | # Make any necessary changes related to gcc specs (generally hardened) |
197 | # Make any necessary changes related to gcc specs (generally hardened) |
| … | |
… | |
| 295 | # Joshua Baergen - October 23, 2005 |
313 | # Joshua Baergen - October 23, 2005 |
| 296 | # Fix shared lib issues on MIPS, FBSD, etc etc |
314 | # Fix shared lib issues on MIPS, FBSD, etc etc |
| 297 | elibtoolize |
315 | elibtoolize |
| 298 | } |
316 | } |
| 299 | |
317 | |
|
|
318 | # @FUNCTION: x-modular_src_prepare |
|
|
319 | # @USAGE: |
|
|
320 | # @DESCRIPTION: |
|
|
321 | # Prepare a package after unpacking, performing all X-related tasks. |
|
|
322 | x-modular_src_prepare() { |
|
|
323 | [[ -n ${GIT_ECLASS} ]] && has src_prepare ${EXPORTED_FUNCTIONS} \ |
|
|
324 | && git_src_prepare |
|
|
325 | x-modular_patch_source |
|
|
326 | x-modular_reconf_source |
|
|
327 | } |
|
|
328 | |
| 300 | # @FUNCTION: x-modular_src_unpack |
329 | # @FUNCTION: x-modular_src_unpack |
| 301 | # @USAGE: |
330 | # @USAGE: |
| 302 | # @DESCRIPTION: |
331 | # @DESCRIPTION: |
| 303 | # Unpack a package, performing all X-related tasks. |
332 | # Unpack a package, performing all X-related tasks. |
| 304 | x-modular_src_unpack() { |
333 | x-modular_src_unpack() { |
| 305 | x-modular_specs_check |
334 | x-modular_specs_check |
| 306 | x-modular_server_supports_drivers_check |
335 | x-modular_server_supports_drivers_check |
| 307 | x-modular_dri_check |
336 | x-modular_dri_check |
| 308 | x-modular_unpack_source |
337 | x-modular_unpack_source |
| 309 | x-modular_patch_source |
338 | has src_prepare ${EXPORTED_FUNCTIONS} || x-modular_src_prepare |
| 310 | x-modular_reconf_source |
|
|
| 311 | } |
339 | } |
| 312 | |
340 | |
| 313 | # @FUNCTION: x-modular_font_configure |
341 | # @FUNCTION: x-modular_font_configure |
| 314 | # @USAGE: |
342 | # @USAGE: |
| 315 | # @DESCRIPTION: |
343 | # @DESCRIPTION: |
| 316 | # If a font package, perform any necessary configuration steps |
344 | # If a font package, perform any necessary configuration steps |
| 317 | x-modular_font_configure() { |
345 | x-modular_font_configure() { |
| 318 | if [[ -n "${FONT}" ]]; then |
346 | if [[ -n "${FONT}" ]]; then |
| 319 | # Might be worth adding an option to configure your desired font |
347 | # Might be worth adding an option to configure your desired font |
| 320 | # and exclude all others. Also, should this USE be nls or minimal? |
348 | # and exclude all others. Also, should this USE be nls or minimal? |
| 321 | if ! use nls; then |
349 | if has nls ${IUSE//+} && ! use nls; then |
| 322 | FONT_OPTIONS="${FONT_OPTIONS} |
350 | FONT_OPTIONS="${FONT_OPTIONS} |
| 323 | --disable-iso8859-2 |
351 | --disable-iso8859-2 |
| 324 | --disable-iso8859-3 |
352 | --disable-iso8859-3 |
| 325 | --disable-iso8859-4 |
353 | --disable-iso8859-4 |
| 326 | --disable-iso8859-5 |
354 | --disable-iso8859-5 |
| … | |
… | |
| 362 | x-modular_font_configure |
390 | x-modular_font_configure |
| 363 | x-modular_debug_setup |
391 | x-modular_debug_setup |
| 364 | |
392 | |
| 365 | # @VARIABLE: CONFIGURE_OPTIONS |
393 | # @VARIABLE: CONFIGURE_OPTIONS |
| 366 | # @DESCRIPTION: |
394 | # @DESCRIPTION: |
| 367 | # Any options to pass to configure |
395 | # Any extra options to pass to configure |
| 368 | [[ -n ${CONFIGURE_OPTIONS} ]] |
|
|
| 369 | |
396 | |
| 370 | # If prefix isn't set here, .pc files cause problems |
397 | # If prefix isn't set here, .pc files cause problems |
| 371 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
398 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
| 372 | econf --prefix=${XDIR} \ |
399 | econf --prefix=${XDIR} \ |
| 373 | --datadir=${XDIR}/share \ |
400 | --datadir=${XDIR}/share \ |
| … | |
… | |
| 383 | # Run make. |
410 | # Run make. |
| 384 | x-modular_src_make() { |
411 | x-modular_src_make() { |
| 385 | emake || die "emake failed" |
412 | emake || die "emake failed" |
| 386 | } |
413 | } |
| 387 | |
414 | |
| 388 | # @FUNCTION: x-modular_src_configure |
415 | # @FUNCTION: x-modular_src_compile |
| 389 | # @USAGE: |
416 | # @USAGE: |
| 390 | # @DESCRIPTION: |
417 | # @DESCRIPTION: |
| 391 | # Compile a package, performing all X-related tasks. |
418 | # Compile a package, performing all X-related tasks. |
| 392 | x-modular_src_compile() { |
419 | x-modular_src_compile() { |
| 393 | x-modular_src_configure |
420 | has src_configure ${EXPORTED_FUNCTIONS} || x-modular_src_configure |
| 394 | x-modular_src_make |
421 | x-modular_src_make |
| 395 | } |
422 | } |
| 396 | |
423 | |
| 397 | # @FUNCTION: x-modular_src_install |
424 | # @FUNCTION: x-modular_src_install |
| 398 | # @USAGE: |
425 | # @USAGE: |
| … | |
… | |
| 407 | DESTDIR="${D}" \ |
434 | DESTDIR="${D}" \ |
| 408 | install \ |
435 | install \ |
| 409 | || die |
436 | || die |
| 410 | else |
437 | else |
| 411 | make \ |
438 | make \ |
|
|
439 | docdir=/usr/share/doc/${PF} \ |
| 412 | DESTDIR="${D}" \ |
440 | DESTDIR="${D}" \ |
| 413 | install \ |
441 | install \ |
| 414 | || die |
442 | || die |
| 415 | fi |
443 | fi |
| 416 | # Shouldn't be necessary in XDIR=/usr |
444 | # Shouldn't be necessary in XDIR=/usr |
| … | |
… | |
| 427 | if [[ -e ${S}/ChangeLog ]]; then |
455 | if [[ -e ${S}/ChangeLog ]]; then |
| 428 | dodoc "${S}"/ChangeLog |
456 | dodoc "${S}"/ChangeLog |
| 429 | fi |
457 | fi |
| 430 | # @VARIABLE: DOCS |
458 | # @VARIABLE: DOCS |
| 431 | # @DESCRIPTION: |
459 | # @DESCRIPTION: |
| 432 | # Any documentation to install |
460 | # Any documentation to install via dodoc |
| 433 | [[ -n ${DOCS} ]] && dodoc ${DOCS} |
461 | [[ -n ${DOCS} ]] && dodoc ${DOCS} |
| 434 | |
462 | |
| 435 | # Don't install libtool archives for server modules |
463 | # Don't install libtool archives for server modules |
| 436 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
464 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
| 437 | find "${D}"/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
465 | find "${D}"/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
| … | |
… | |
| 472 | # @DESCRIPTION: |
500 | # @DESCRIPTION: |
| 473 | # Run X-specific post-removal tasks on the live filesystem. The only |
501 | # Run X-specific post-removal tasks on the live filesystem. The only |
| 474 | # task right now is some cleanup for font packages. |
502 | # task right now is some cleanup for font packages. |
| 475 | x-modular_pkg_postrm() { |
503 | x-modular_pkg_postrm() { |
| 476 | if [[ -n "${FONT}" ]]; then |
504 | if [[ -n "${FONT}" ]]; then |
| 477 | cleanup_fonts |
|
|
| 478 | font_pkg_postrm |
505 | font_pkg_postrm |
| 479 | fi |
506 | fi |
| 480 | } |
|
|
| 481 | |
|
|
| 482 | # @FUNCTION: cleanup_fonts |
|
|
| 483 | # @USAGE: |
|
|
| 484 | # @DESCRIPTION: |
|
|
| 485 | # Get rid of font directories that only contain generated files |
|
|
| 486 | cleanup_fonts() { |
|
|
| 487 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
|
|
| 488 | for DIR in ${FONT_DIR}; do |
|
|
| 489 | unset KEEP_FONTDIR |
|
|
| 490 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
|
|
| 491 | |
|
|
| 492 | ebegin "Checking ${REAL_DIR} for useless files" |
|
|
| 493 | pushd ${REAL_DIR} &> /dev/null |
|
|
| 494 | for FILE in *; do |
|
|
| 495 | unset MATCH |
|
|
| 496 | for ALLOWED_FILE in ${ALLOWED_FILES}; do |
|
|
| 497 | if [[ ${FILE} = ${ALLOWED_FILE} ]]; then |
|
|
| 498 | # If it's allowed, then move on to the next file |
|
|
| 499 | MATCH="yes" |
|
|
| 500 | break |
|
|
| 501 | fi |
|
|
| 502 | done |
|
|
| 503 | # If we found a match in allowed files, move on to the next file |
|
|
| 504 | if [[ -n ${MATCH} ]]; then |
|
|
| 505 | continue |
|
|
| 506 | fi |
|
|
| 507 | # If we get this far, there wasn't a match in the allowed files |
|
|
| 508 | KEEP_FONTDIR="yes" |
|
|
| 509 | # We don't need to check more files if we're already keeping it |
|
|
| 510 | break |
|
|
| 511 | done |
|
|
| 512 | popd &> /dev/null |
|
|
| 513 | # If there are no files worth keeping, then get rid of the dir |
|
|
| 514 | if [[ -z "${KEEP_FONTDIR}" ]]; then |
|
|
| 515 | rm -rf ${REAL_DIR} |
|
|
| 516 | fi |
|
|
| 517 | eend 0 |
|
|
| 518 | done |
|
|
| 519 | } |
507 | } |
| 520 | |
508 | |
| 521 | # @FUNCTION: setup_fonts |
509 | # @FUNCTION: setup_fonts |
| 522 | # @USAGE: |
510 | # @USAGE: |
| 523 | # @DESCRIPTION: |
511 | # @DESCRIPTION: |
| … | |
… | |
| 529 | die "${msg}" |
517 | die "${msg}" |
| 530 | fi |
518 | fi |
| 531 | |
519 | |
| 532 | create_fonts_scale |
520 | create_fonts_scale |
| 533 | create_fonts_dir |
521 | create_fonts_dir |
| 534 | fix_font_permissions |
|
|
| 535 | create_font_cache |
522 | create_font_cache |
| 536 | } |
523 | } |
| 537 | |
524 | |
| 538 | # @FUNCTION: remove_font_metadata |
525 | # @FUNCTION: remove_font_metadata |
| 539 | # @USAGE: |
526 | # @USAGE: |
| … | |
… | |
| 553 | } |
540 | } |
| 554 | |
541 | |
| 555 | # @FUNCTION: install_driver_hwdata |
542 | # @FUNCTION: install_driver_hwdata |
| 556 | # @USAGE: |
543 | # @USAGE: |
| 557 | # @DESCRIPTION: |
544 | # @DESCRIPTION: |
| 558 | # Installs device-to-driver mappings for system-config-display and |
545 | # Installs device-to-driver mappings for system-config-display and |
| 559 | # anything else that uses hwdata. |
546 | # anything else that uses hwdata. |
| 560 | install_driver_hwdata() { |
547 | install_driver_hwdata() { |
| 561 | insinto /usr/share/hwdata/videoaliases |
548 | insinto /usr/share/hwdata/videoaliases |
| 562 | for i in "${FILESDIR}"/*.xinf; do |
549 | for i in "${FILESDIR}"/*.xinf; do |
| 563 | # We need this for the case when none exist, |
550 | # We need this for the case when none exist, |
| … | |
… | |
| 622 | fi |
609 | fi |
| 623 | done |
610 | done |
| 624 | eend 0 |
611 | eend 0 |
| 625 | } |
612 | } |
| 626 | |
613 | |
| 627 | # @FUNCTION: fix_font_permissions |
|
|
| 628 | # @USAGE: |
|
|
| 629 | # @DESCRIPTION: |
|
|
| 630 | # Font files should have 644 permissions. Ensure this is the case. |
|
|
| 631 | fix_font_permissions() { |
|
|
| 632 | ebegin "Fixing permissions" |
|
|
| 633 | for DIR in ${FONT_DIR}; do |
|
|
| 634 | find "${ROOT}"/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
|
|
| 635 | -exec chmod 0644 {} \; |
|
|
| 636 | done |
|
|
| 637 | eend 0 |
|
|
| 638 | } |
|
|
| 639 | |
|
|
| 640 | # @FUNCTION: create_font_cache |
614 | # @FUNCTION: create_font_cache |
| 641 | # @USAGE: |
615 | # @USAGE: |
| 642 | # @DESCRIPTION: |
616 | # @DESCRIPTION: |
| 643 | # Create fonts.cache-1 files, used by the new client-side fonts |
617 | # Create fonts.cache-1 files, used by the new client-side fonts |
| 644 | # subsystem. |
618 | # subsystem. |
| 645 | create_font_cache() { |
619 | create_font_cache() { |
| 646 | font_pkg_postinst |
620 | font_pkg_postinst |
| 647 | } |
621 | } |
| 648 | |
|
|
| 649 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
|
|