| 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.109 2009/05/14 12:40:55 remi Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.123 2011/11/22 18:42:10 vapier 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, |
| … | |
… | |
| 65 | XDIR="/usr" |
70 | XDIR="/usr" |
| 66 | |
71 | |
| 67 | IUSE="" |
72 | IUSE="" |
| 68 | HOMEPAGE="http://xorg.freedesktop.org/" |
73 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 69 | |
74 | |
| 70 | if [[ -z ${SNAPSHOT} ]]; then |
|
|
| 71 | # @ECLASS-VARIABLE: SNAPSHOT |
75 | # @ECLASS-VARIABLE: SNAPSHOT |
| 72 | # @DESCRIPTION: |
76 | # @DESCRIPTION: |
| 73 | # 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 |
| 74 | # before inheriting this eclass. |
78 | # before inheriting this eclass. |
| 75 | SNAPSHOT="no" |
79 | : ${SNAPSHOT:=no} |
| 76 | fi |
|
|
| 77 | |
80 | |
| 78 | # Set up SRC_URI for individual modular releases |
81 | # Set up SRC_URI for individual modular releases |
| 79 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
82 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
| 80 | # @ECLASS-VARIABLE: MODULE |
83 | # @ECLASS-VARIABLE: MODULE |
| 81 | # @DESCRIPTION: |
84 | # @DESCRIPTION: |
| 82 | # The subdirectory to download source from. Possible settings are app, |
85 | # The subdirectory to download source from. Possible settings are app, |
| 83 | # doc, data, util, driver, font, lib, proto, xserver. Set above the |
86 | # doc, data, util, driver, font, lib, proto, xserver. Set above the |
| 84 | # inherit to override the default autoconfigured module. |
87 | # inherit to override the default autoconfigured module. |
| 85 | if [[ -z ${MODULE} ]]; then |
88 | if [[ -z ${MODULE} ]]; then |
| 86 | MODULE="" |
|
|
| 87 | case ${CATEGORY} in |
89 | case ${CATEGORY} in |
| 88 | app-doc) MODULE="doc" ;; |
90 | app-doc) MODULE="doc" ;; |
| 89 | media-fonts) MODULE="font" ;; |
91 | media-fonts) MODULE="font" ;; |
| 90 | x11-apps|x11-wm) MODULE="app" ;; |
92 | x11-apps|x11-wm) MODULE="app" ;; |
| 91 | x11-misc|x11-themes) MODULE="util" ;; |
93 | x11-misc|x11-themes) MODULE="util" ;; |
| … | |
… | |
| 103 | fi |
105 | fi |
| 104 | |
106 | |
| 105 | SLOT="0" |
107 | SLOT="0" |
| 106 | |
108 | |
| 107 | # 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 |
| 108 | # LICENSE after the inherit. |
110 | # LICENSE after the inherit. Nearly all FreeDesktop-hosted X packages |
| 109 | LICENSE=${PN} |
111 | # are under the MIT license. (This is what Red Hat does in their rpms) |
|
|
112 | LICENSE="MIT" |
| 110 | |
113 | |
| 111 | # Set up shared dependencies |
114 | # Set up shared dependencies |
| 112 | if [[ -n "${SNAPSHOT}" ]]; then |
115 | if [[ -n "${SNAPSHOT}" ]]; then |
| 113 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
116 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 114 | DEPEND="${DEPEND} |
117 | DEPEND="${DEPEND} |
| … | |
… | |
| 127 | media-fonts/font-alias" |
130 | media-fonts/font-alias" |
| 128 | |
131 | |
| 129 | # Starting with 7.0RC3, we can specify the font directory |
132 | # Starting with 7.0RC3, we can specify the font directory |
| 130 | # 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 |
| 131 | |
134 | |
| 132 | # Wrap in `if` so ebuilds can set it too |
|
|
| 133 | if [[ -z ${FONT_DIR} ]]; then |
|
|
| 134 | # @ECLASS-VARIABLE: FONT_DIR |
135 | # @ECLASS-VARIABLE: FONT_DIR |
| 135 | # @DESCRIPTION: |
136 | # @DESCRIPTION: |
| 136 | # 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 |
| 137 | # the subdirectory of /usr/share/fonts/ it should install into, set |
138 | # the subdirectory of /usr/share/fonts/ it should install into, set |
| 138 | # FONT_DIR to that directory or directories. Set before inheriting this |
139 | # FONT_DIR to that directory or directories. Set before inheriting this |
| 139 | # eclass. |
140 | # eclass. |
| 140 | FONT_DIR=${PN##*-} |
141 | : ${FONT_DIR:=${PN##*-}} |
| 141 | |
|
|
| 142 | fi |
|
|
| 143 | |
142 | |
| 144 | # Fix case of font directories |
143 | # Fix case of font directories |
| 145 | FONT_DIR=${FONT_DIR/ttf/TTF} |
144 | FONT_DIR=${FONT_DIR/ttf/TTF} |
| 146 | FONT_DIR=${FONT_DIR/otf/OTF} |
145 | FONT_DIR=${FONT_DIR/otf/OTF} |
| 147 | FONT_DIR=${FONT_DIR/type1/Type1} |
146 | FONT_DIR=${FONT_DIR/type1/Type1} |
| 148 | FONT_DIR=${FONT_DIR/speedo/Speedo} |
147 | FONT_DIR=${FONT_DIR/speedo/Speedo} |
| 149 | |
148 | |
| 150 | # Set up configure option |
149 | # Set up configure options, wrapped so ebuilds can override if need be |
|
|
150 | if [[ -z ${FONT_OPTIONS} ]]; then |
| 151 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
151 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
|
|
152 | fi |
| 152 | |
153 | |
| 153 | if [[ -n "${FONT}" ]]; then |
154 | if [[ -n "${FONT}" ]]; then |
| 154 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]] || [[ ${PN##*-} = cyrillic ]]; then |
155 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]] || [[ ${PN##*-} = cyrillic ]]; then |
| 155 | IUSE="${IUSE} nls" |
156 | IUSE="${IUSE} nls" |
| 156 | fi |
157 | fi |
| … | |
… | |
| 180 | DEPEND="${DEPEND} |
181 | DEPEND="${DEPEND} |
| 181 | >=dev-util/pkgconfig-0.18" |
182 | >=dev-util/pkgconfig-0.18" |
| 182 | |
183 | |
| 183 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
184 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
| 184 | DEPEND="${DEPEND} |
185 | DEPEND="${DEPEND} |
| 185 | >=x11-misc/util-macros-0.99.2 |
186 | >=x11-misc/util-macros-1.3.0" |
| 186 | >=sys-devel/binutils-2.16.1-r3" |
|
|
| 187 | fi |
187 | fi |
| 188 | |
188 | |
| 189 | RDEPEND="${RDEPEND} |
189 | RDEPEND="${RDEPEND} |
| 190 | !<=x11-base/xorg-x11-6.9" |
190 | !<=x11-base/xorg-x11-6.9" |
| 191 | # Provides virtual/x11 for temporary use until packages are ported |
191 | # Provides virtual/x11 for temporary use until packages are ported |
| … | |
… | |
| 344 | # If a font package, perform any necessary configuration steps |
344 | # If a font package, perform any necessary configuration steps |
| 345 | x-modular_font_configure() { |
345 | x-modular_font_configure() { |
| 346 | if [[ -n "${FONT}" ]]; then |
346 | if [[ -n "${FONT}" ]]; then |
| 347 | # Might be worth adding an option to configure your desired font |
347 | # Might be worth adding an option to configure your desired font |
| 348 | # 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? |
| 349 | if ! use nls; then |
349 | if has nls ${IUSE//+} && ! use nls; then |
| 350 | FONT_OPTIONS="${FONT_OPTIONS} |
350 | FONT_OPTIONS="${FONT_OPTIONS} |
| 351 | --disable-iso8859-2 |
351 | --disable-iso8859-2 |
| 352 | --disable-iso8859-3 |
352 | --disable-iso8859-3 |
| 353 | --disable-iso8859-4 |
353 | --disable-iso8859-4 |
| 354 | --disable-iso8859-5 |
354 | --disable-iso8859-5 |
| … | |
… | |
| 390 | x-modular_font_configure |
390 | x-modular_font_configure |
| 391 | x-modular_debug_setup |
391 | x-modular_debug_setup |
| 392 | |
392 | |
| 393 | # @VARIABLE: CONFIGURE_OPTIONS |
393 | # @VARIABLE: CONFIGURE_OPTIONS |
| 394 | # @DESCRIPTION: |
394 | # @DESCRIPTION: |
| 395 | # Any options to pass to configure |
395 | # Any extra options to pass to configure |
| 396 | [[ -n ${CONFIGURE_OPTIONS} ]] |
|
|
| 397 | |
396 | |
| 398 | # If prefix isn't set here, .pc files cause problems |
397 | # If prefix isn't set here, .pc files cause problems |
| 399 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
398 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
| 400 | econf --prefix=${XDIR} \ |
399 | econf --prefix=${XDIR} \ |
| 401 | --datadir=${XDIR}/share \ |
400 | --datadir=${XDIR}/share \ |
| … | |
… | |
| 435 | DESTDIR="${D}" \ |
434 | DESTDIR="${D}" \ |
| 436 | install \ |
435 | install \ |
| 437 | || die |
436 | || die |
| 438 | else |
437 | else |
| 439 | make \ |
438 | make \ |
|
|
439 | docdir=/usr/share/doc/${PF} \ |
| 440 | DESTDIR="${D}" \ |
440 | DESTDIR="${D}" \ |
| 441 | install \ |
441 | install \ |
| 442 | || die |
442 | || die |
| 443 | fi |
443 | fi |
| 444 | # Shouldn't be necessary in XDIR=/usr |
444 | # Shouldn't be necessary in XDIR=/usr |
| … | |
… | |
| 455 | if [[ -e ${S}/ChangeLog ]]; then |
455 | if [[ -e ${S}/ChangeLog ]]; then |
| 456 | dodoc "${S}"/ChangeLog |
456 | dodoc "${S}"/ChangeLog |
| 457 | fi |
457 | fi |
| 458 | # @VARIABLE: DOCS |
458 | # @VARIABLE: DOCS |
| 459 | # @DESCRIPTION: |
459 | # @DESCRIPTION: |
| 460 | # Any documentation to install |
460 | # Any documentation to install via dodoc |
| 461 | [[ -n ${DOCS} ]] && dodoc ${DOCS} |
461 | [[ -n ${DOCS} ]] && dodoc ${DOCS} |
| 462 | |
462 | |
| 463 | # Don't install libtool archives for server modules |
463 | # Don't install libtool archives for server modules |
| 464 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
464 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
| 465 | find "${D}"/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
465 | find "${D}"/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
| … | |
… | |
| 500 | # @DESCRIPTION: |
500 | # @DESCRIPTION: |
| 501 | # 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 |
| 502 | # task right now is some cleanup for font packages. |
502 | # task right now is some cleanup for font packages. |
| 503 | x-modular_pkg_postrm() { |
503 | x-modular_pkg_postrm() { |
| 504 | if [[ -n "${FONT}" ]]; then |
504 | if [[ -n "${FONT}" ]]; then |
| 505 | cleanup_fonts |
|
|
| 506 | font_pkg_postrm |
505 | font_pkg_postrm |
| 507 | fi |
506 | fi |
| 508 | } |
|
|
| 509 | |
|
|
| 510 | # @FUNCTION: cleanup_fonts |
|
|
| 511 | # @USAGE: |
|
|
| 512 | # @DESCRIPTION: |
|
|
| 513 | # Get rid of font directories that only contain generated files |
|
|
| 514 | cleanup_fonts() { |
|
|
| 515 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
|
|
| 516 | for DIR in ${FONT_DIR}; do |
|
|
| 517 | unset KEEP_FONTDIR |
|
|
| 518 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
|
|
| 519 | |
|
|
| 520 | ebegin "Checking ${REAL_DIR} for useless files" |
|
|
| 521 | pushd ${REAL_DIR} &> /dev/null |
|
|
| 522 | for FILE in *; do |
|
|
| 523 | unset MATCH |
|
|
| 524 | for ALLOWED_FILE in ${ALLOWED_FILES}; do |
|
|
| 525 | if [[ ${FILE} = ${ALLOWED_FILE} ]]; then |
|
|
| 526 | # If it's allowed, then move on to the next file |
|
|
| 527 | MATCH="yes" |
|
|
| 528 | break |
|
|
| 529 | fi |
|
|
| 530 | done |
|
|
| 531 | # If we found a match in allowed files, move on to the next file |
|
|
| 532 | if [[ -n ${MATCH} ]]; then |
|
|
| 533 | continue |
|
|
| 534 | fi |
|
|
| 535 | # If we get this far, there wasn't a match in the allowed files |
|
|
| 536 | KEEP_FONTDIR="yes" |
|
|
| 537 | # We don't need to check more files if we're already keeping it |
|
|
| 538 | break |
|
|
| 539 | done |
|
|
| 540 | popd &> /dev/null |
|
|
| 541 | # If there are no files worth keeping, then get rid of the dir |
|
|
| 542 | if [[ -z "${KEEP_FONTDIR}" ]]; then |
|
|
| 543 | rm -rf ${REAL_DIR} |
|
|
| 544 | fi |
|
|
| 545 | eend 0 |
|
|
| 546 | done |
|
|
| 547 | } |
507 | } |
| 548 | |
508 | |
| 549 | # @FUNCTION: setup_fonts |
509 | # @FUNCTION: setup_fonts |
| 550 | # @USAGE: |
510 | # @USAGE: |
| 551 | # @DESCRIPTION: |
511 | # @DESCRIPTION: |
| … | |
… | |
| 557 | die "${msg}" |
517 | die "${msg}" |
| 558 | fi |
518 | fi |
| 559 | |
519 | |
| 560 | create_fonts_scale |
520 | create_fonts_scale |
| 561 | create_fonts_dir |
521 | create_fonts_dir |
| 562 | fix_font_permissions |
|
|
| 563 | create_font_cache |
522 | create_font_cache |
| 564 | } |
523 | } |
| 565 | |
524 | |
| 566 | # @FUNCTION: remove_font_metadata |
525 | # @FUNCTION: remove_font_metadata |
| 567 | # @USAGE: |
526 | # @USAGE: |
| … | |
… | |
| 581 | } |
540 | } |
| 582 | |
541 | |
| 583 | # @FUNCTION: install_driver_hwdata |
542 | # @FUNCTION: install_driver_hwdata |
| 584 | # @USAGE: |
543 | # @USAGE: |
| 585 | # @DESCRIPTION: |
544 | # @DESCRIPTION: |
| 586 | # Installs device-to-driver mappings for system-config-display and |
545 | # Installs device-to-driver mappings for system-config-display and |
| 587 | # anything else that uses hwdata. |
546 | # anything else that uses hwdata. |
| 588 | install_driver_hwdata() { |
547 | install_driver_hwdata() { |
| 589 | insinto /usr/share/hwdata/videoaliases |
548 | insinto /usr/share/hwdata/videoaliases |
| 590 | for i in "${FILESDIR}"/*.xinf; do |
549 | for i in "${FILESDIR}"/*.xinf; do |
| 591 | # We need this for the case when none exist, |
550 | # We need this for the case when none exist, |
| … | |
… | |
| 650 | fi |
609 | fi |
| 651 | done |
610 | done |
| 652 | eend 0 |
611 | eend 0 |
| 653 | } |
612 | } |
| 654 | |
613 | |
| 655 | # @FUNCTION: fix_font_permissions |
|
|
| 656 | # @USAGE: |
|
|
| 657 | # @DESCRIPTION: |
|
|
| 658 | # Font files should have 644 permissions. Ensure this is the case. |
|
|
| 659 | fix_font_permissions() { |
|
|
| 660 | ebegin "Fixing permissions" |
|
|
| 661 | for DIR in ${FONT_DIR}; do |
|
|
| 662 | find "${ROOT}"/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
|
|
| 663 | -exec chmod 0644 {} \; |
|
|
| 664 | done |
|
|
| 665 | eend 0 |
|
|
| 666 | } |
|
|
| 667 | |
|
|
| 668 | # @FUNCTION: create_font_cache |
614 | # @FUNCTION: create_font_cache |
| 669 | # @USAGE: |
615 | # @USAGE: |
| 670 | # @DESCRIPTION: |
616 | # @DESCRIPTION: |
| 671 | # 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 |
| 672 | # subsystem. |
618 | # subsystem. |