| 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.105 2009/02/18 18:40:52 dberkholz Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.117 2009/11/28 10:25:37 scarabeus 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 |
| … | |
… | |
| 33 | # @ECLASS-VARIABLE: SNAPSHOT |
71 | # @ECLASS-VARIABLE: SNAPSHOT |
| 34 | # @DESCRIPTION: |
72 | # @DESCRIPTION: |
| 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 |
|
|
| 39 | |
|
|
| 40 | if [[ ${PV} = 9999* ]]; then |
|
|
| 41 | GIT_ECLASS="git" |
|
|
| 42 | SNAPSHOT="yes" |
|
|
| 43 | SRC_URI="" |
|
|
| 44 | fi |
76 | fi |
| 45 | |
77 | |
| 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 | # @ECLASS-VARIABLE: MODULE |
80 | # @ECLASS-VARIABLE: MODULE |
| … | |
… | |
| 71 | fi |
103 | fi |
| 72 | |
104 | |
| 73 | SLOT="0" |
105 | SLOT="0" |
| 74 | |
106 | |
| 75 | # 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 |
| 76 | # LICENSE after the inherit. |
108 | # LICENSE after the inherit. Nearly all FreeDesktop-hosted X packages |
| 77 | LICENSE=${PN} |
109 | # are under the MIT license. (This is what Red Hat does in their rpms) |
|
|
110 | LICENSE="MIT" |
| 78 | |
111 | |
| 79 | # Set up shared dependencies |
112 | # Set up shared dependencies |
| 80 | if [[ -n "${SNAPSHOT}" ]]; then |
113 | if [[ -n "${SNAPSHOT}" ]]; then |
| 81 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
114 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 82 | DEPEND="${DEPEND} |
115 | DEPEND="${DEPEND} |
| … | |
… | |
| 84 | >=sys-devel/m4-1.4" |
117 | >=sys-devel/m4-1.4" |
| 85 | WANT_AUTOCONF="latest" |
118 | WANT_AUTOCONF="latest" |
| 86 | WANT_AUTOMAKE="latest" |
119 | WANT_AUTOMAKE="latest" |
| 87 | fi |
120 | fi |
| 88 | |
121 | |
| 89 | # If we're a font package, but not the font.alias one |
122 | 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} |
123 | RDEPEND="${RDEPEND} |
| 102 | media-fonts/encodings |
124 | media-fonts/encodings |
| 103 | x11-apps/mkfontscale |
125 | x11-apps/mkfontscale |
| 104 | x11-apps/mkfontdir" |
126 | x11-apps/mkfontdir" |
| 105 | PDEPEND="${PDEPEND} |
127 | PDEPEND="${PDEPEND} |
| … | |
… | |
| 124 | FONT_DIR=${FONT_DIR/ttf/TTF} |
146 | FONT_DIR=${FONT_DIR/ttf/TTF} |
| 125 | FONT_DIR=${FONT_DIR/otf/OTF} |
147 | FONT_DIR=${FONT_DIR/otf/OTF} |
| 126 | FONT_DIR=${FONT_DIR/type1/Type1} |
148 | FONT_DIR=${FONT_DIR/type1/Type1} |
| 127 | FONT_DIR=${FONT_DIR/speedo/Speedo} |
149 | FONT_DIR=${FONT_DIR/speedo/Speedo} |
| 128 | |
150 | |
| 129 | # Set up configure option |
151 | # Set up configure options, wrapped so ebuilds can override if need be |
|
|
152 | if [[ -z ${FONT_OPTIONS} ]]; then |
| 130 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
153 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
|
|
154 | fi |
| 131 | |
155 | |
| 132 | if [[ -n "${FONT}" ]]; then |
156 | if [[ -n "${FONT}" ]]; then |
| 133 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]] || [[ ${PN##*-} = cyrillic ]]; then |
157 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]] || [[ ${PN##*-} = cyrillic ]]; then |
| 134 | IUSE="${IUSE} nls" |
158 | IUSE="${IUSE} nls" |
| 135 | fi |
159 | fi |
| … | |
… | |
| 159 | DEPEND="${DEPEND} |
183 | DEPEND="${DEPEND} |
| 160 | >=dev-util/pkgconfig-0.18" |
184 | >=dev-util/pkgconfig-0.18" |
| 161 | |
185 | |
| 162 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
186 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
| 163 | DEPEND="${DEPEND} |
187 | DEPEND="${DEPEND} |
| 164 | >=x11-misc/util-macros-0.99.2 |
188 | >=x11-misc/util-macros-1.3.0 |
| 165 | >=sys-devel/binutils-2.16.1-r3" |
189 | sys-devel/binutils" |
| 166 | fi |
190 | fi |
| 167 | |
191 | |
| 168 | RDEPEND="${RDEPEND} |
192 | RDEPEND="${RDEPEND} |
| 169 | !<=x11-base/xorg-x11-6.9" |
193 | !<=x11-base/xorg-x11-6.9" |
| 170 | # Provides virtual/x11 for temporary use until packages are ported |
194 | # Provides virtual/x11 for temporary use until packages are ported |
| 171 | # x11-base/x11-env" |
195 | # x11-base/x11-env" |
| 172 | |
|
|
| 173 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
|
|
| 174 | ${FONT_ECLASS} ${GIT_ECLASS} |
|
|
| 175 | |
196 | |
| 176 | # @FUNCTION: x-modular_specs_check |
197 | # @FUNCTION: x-modular_specs_check |
| 177 | # @USAGE: |
198 | # @USAGE: |
| 178 | # @DESCRIPTION: |
199 | # @DESCRIPTION: |
| 179 | # Make any necessary changes related to gcc specs (generally hardened) |
200 | # Make any necessary changes related to gcc specs (generally hardened) |
| … | |
… | |
| 190 | # @DESCRIPTION: |
211 | # @DESCRIPTION: |
| 191 | # 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 |
| 192 | x-modular_dri_check() { |
213 | x-modular_dri_check() { |
| 193 | # (#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 |
| 194 | # 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) |
| 195 | if [[ -n "${DRIVER}" ]]; then |
218 | if [[ -n "${DRIVER}" ]]; then |
| 196 | if has dri ${IUSE} && use dri; then |
219 | if has dri ${IUSE} && use dri; then |
| 197 | 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 |
| 198 | if ! built_with_use --missing true x11-base/xorg-server dri; then |
226 | if ! built_with_use x11-base/xorg-server dri; then |
| 199 | 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 |
| 200 | fi |
229 | fi |
| 201 | fi |
230 | fi |
| 202 | fi |
231 | fi |
| 203 | } |
232 | } |
| 204 | |
233 | |
| … | |
… | |
| 287 | # Joshua Baergen - October 23, 2005 |
316 | # Joshua Baergen - October 23, 2005 |
| 288 | # Fix shared lib issues on MIPS, FBSD, etc etc |
317 | # Fix shared lib issues on MIPS, FBSD, etc etc |
| 289 | elibtoolize |
318 | elibtoolize |
| 290 | } |
319 | } |
| 291 | |
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 | |
| 292 | # @FUNCTION: x-modular_src_unpack |
332 | # @FUNCTION: x-modular_src_unpack |
| 293 | # @USAGE: |
333 | # @USAGE: |
| 294 | # @DESCRIPTION: |
334 | # @DESCRIPTION: |
| 295 | # Unpack a package, performing all X-related tasks. |
335 | # Unpack a package, performing all X-related tasks. |
| 296 | x-modular_src_unpack() { |
336 | x-modular_src_unpack() { |
| 297 | x-modular_specs_check |
337 | x-modular_specs_check |
| 298 | x-modular_server_supports_drivers_check |
338 | x-modular_server_supports_drivers_check |
| 299 | x-modular_dri_check |
339 | x-modular_dri_check |
| 300 | x-modular_unpack_source |
340 | x-modular_unpack_source |
| 301 | x-modular_patch_source |
341 | has src_prepare ${EXPORTED_FUNCTIONS} || x-modular_src_prepare |
| 302 | x-modular_reconf_source |
|
|
| 303 | } |
342 | } |
| 304 | |
343 | |
| 305 | # @FUNCTION: x-modular_font_configure |
344 | # @FUNCTION: x-modular_font_configure |
| 306 | # @USAGE: |
345 | # @USAGE: |
| 307 | # @DESCRIPTION: |
346 | # @DESCRIPTION: |
| 308 | # If a font package, perform any necessary configuration steps |
347 | # If a font package, perform any necessary configuration steps |
| 309 | x-modular_font_configure() { |
348 | x-modular_font_configure() { |
| 310 | if [[ -n "${FONT}" ]]; then |
349 | if [[ -n "${FONT}" ]]; then |
| 311 | # Might be worth adding an option to configure your desired font |
350 | # Might be worth adding an option to configure your desired font |
| 312 | # 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? |
| 313 | if ! use nls; then |
352 | if has nls ${IUSE//+} && ! use nls; then |
| 314 | FONT_OPTIONS="${FONT_OPTIONS} |
353 | FONT_OPTIONS="${FONT_OPTIONS} |
| 315 | --disable-iso8859-2 |
354 | --disable-iso8859-2 |
| 316 | --disable-iso8859-3 |
355 | --disable-iso8859-3 |
| 317 | --disable-iso8859-4 |
356 | --disable-iso8859-4 |
| 318 | --disable-iso8859-5 |
357 | --disable-iso8859-5 |
| … | |
… | |
| 375 | # Run make. |
414 | # Run make. |
| 376 | x-modular_src_make() { |
415 | x-modular_src_make() { |
| 377 | emake || die "emake failed" |
416 | emake || die "emake failed" |
| 378 | } |
417 | } |
| 379 | |
418 | |
| 380 | # @FUNCTION: x-modular_src_configure |
419 | # @FUNCTION: x-modular_src_compile |
| 381 | # @USAGE: |
420 | # @USAGE: |
| 382 | # @DESCRIPTION: |
421 | # @DESCRIPTION: |
| 383 | # Compile a package, performing all X-related tasks. |
422 | # Compile a package, performing all X-related tasks. |
| 384 | x-modular_src_compile() { |
423 | x-modular_src_compile() { |
| 385 | x-modular_src_configure |
424 | has src_configure ${EXPORTED_FUNCTIONS} || x-modular_src_configure |
| 386 | x-modular_src_make |
425 | x-modular_src_make |
| 387 | } |
426 | } |
| 388 | |
427 | |
| 389 | # @FUNCTION: x-modular_src_install |
428 | # @FUNCTION: x-modular_src_install |
| 390 | # @USAGE: |
429 | # @USAGE: |
| 391 | # @DESCRIPTION: |
430 | # @DESCRIPTION: |
| 392 | # Install a built package to ${D}, performing any necessary steps. |
431 | # Install a built package to ${D}, performing any necessary steps. |
| 393 | # Creates a ChangeLog from git if using live ebuilds. |
432 | # Creates a ChangeLog from git if using live ebuilds. |
| 394 | x-modular_src_install() { |
433 | x-modular_src_install() { |
| 395 | # Install everything to ${XDIR} |
434 | # Install everything to ${XDIR} |
|
|
435 | if [[ ${CATEGORY} = x11-proto ]]; then |
| 396 | make \ |
436 | make \ |
|
|
437 | ${PN/proto/}docdir=/usr/share/doc/${PF} \ |
| 397 | DESTDIR="${D}" \ |
438 | DESTDIR="${D}" \ |
| 398 | install \ |
439 | install \ |
| 399 | || die |
440 | || die |
|
|
441 | else |
|
|
442 | make \ |
|
|
443 | docdir=/usr/share/doc/${PF} \ |
|
|
444 | DESTDIR="${D}" \ |
|
|
445 | install \ |
|
|
446 | || die |
|
|
447 | fi |
| 400 | # Shouldn't be necessary in XDIR=/usr |
448 | # Shouldn't be necessary in XDIR=/usr |
| 401 | # einstall forces datadir, so we need to re-force it |
449 | # einstall forces datadir, so we need to re-force it |
| 402 | # datadir=${XDIR}/share \ |
450 | # datadir=${XDIR}/share \ |
| 403 | # mandir=${XDIR}/share/man \ |
451 | # mandir=${XDIR}/share/man \ |
| 404 | |
452 | |
| … | |
… | |
| 466 | # @FUNCTION: cleanup_fonts |
514 | # @FUNCTION: cleanup_fonts |
| 467 | # @USAGE: |
515 | # @USAGE: |
| 468 | # @DESCRIPTION: |
516 | # @DESCRIPTION: |
| 469 | # Get rid of font directories that only contain generated files |
517 | # Get rid of font directories that only contain generated files |
| 470 | cleanup_fonts() { |
518 | cleanup_fonts() { |
| 471 | 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" |
| 472 | for DIR in ${FONT_DIR}; do |
520 | for DIR in ${FONT_DIR}; do |
| 473 | unset KEEP_FONTDIR |
521 | unset KEEP_FONTDIR |
| 474 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
522 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
| 475 | |
523 | |
| 476 | ebegin "Checking ${REAL_DIR} for useless files" |
524 | ebegin "Checking ${REAL_DIR} for useless files" |
| … | |
… | |
| 513 | die "${msg}" |
561 | die "${msg}" |
| 514 | fi |
562 | fi |
| 515 | |
563 | |
| 516 | create_fonts_scale |
564 | create_fonts_scale |
| 517 | create_fonts_dir |
565 | create_fonts_dir |
| 518 | fix_font_permissions |
|
|
| 519 | create_font_cache |
566 | create_font_cache |
| 520 | } |
567 | } |
| 521 | |
568 | |
| 522 | # @FUNCTION: remove_font_metadata |
569 | # @FUNCTION: remove_font_metadata |
| 523 | # @USAGE: |
570 | # @USAGE: |
| … | |
… | |
| 606 | fi |
653 | fi |
| 607 | done |
654 | done |
| 608 | eend 0 |
655 | eend 0 |
| 609 | } |
656 | } |
| 610 | |
657 | |
| 611 | # @FUNCTION: fix_font_permissions |
|
|
| 612 | # @USAGE: |
|
|
| 613 | # @DESCRIPTION: |
|
|
| 614 | # Font files should have 644 permissions. Ensure this is the case. |
|
|
| 615 | fix_font_permissions() { |
|
|
| 616 | ebegin "Fixing permissions" |
|
|
| 617 | for DIR in ${FONT_DIR}; do |
|
|
| 618 | find "${ROOT}"/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
|
|
| 619 | -exec chmod 0644 {} \; |
|
|
| 620 | done |
|
|
| 621 | eend 0 |
|
|
| 622 | } |
|
|
| 623 | |
|
|
| 624 | # @FUNCTION: create_font_cache |
658 | # @FUNCTION: create_font_cache |
| 625 | # @USAGE: |
659 | # @USAGE: |
| 626 | # @DESCRIPTION: |
660 | # @DESCRIPTION: |
| 627 | # 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 |
| 628 | # subsystem. |
662 | # subsystem. |
| 629 | create_font_cache() { |
663 | create_font_cache() { |
| 630 | font_pkg_postinst |
664 | font_pkg_postinst |
| 631 | } |
665 | } |
| 632 | |
|
|
| 633 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
|
|