| 1 | # Copyright 1999-2010 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/xorg-2.eclass,v 1.44 2011/05/14 16:27:50 scarabeus Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.59 2012/09/27 16:35:42 axs Exp $ |
| 4 | # |
4 | |
| 5 | # @ECLASS: xorg-2.eclass |
5 | # @ECLASS: xorg-2.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # x11@gentoo.org |
7 | # x11@gentoo.org |
|
|
8 | # @AUTHOR: |
|
|
9 | # Author: Tomáš Chvátal <scarabeus@gentoo.org> |
|
|
10 | # Author: Donnie Berkholz <dberkholz@gentoo.org> |
| 8 | # @BLURB: Reduces code duplication in the modularized X11 ebuilds. |
11 | # @BLURB: Reduces code duplication in the modularized X11 ebuilds. |
| 9 | # @DESCRIPTION: |
12 | # @DESCRIPTION: |
| 10 | # This eclass makes trivial X ebuilds possible for apps, fonts, drivers, |
13 | # This eclass makes trivial X ebuilds possible for apps, fonts, drivers, |
| 11 | # and more. Many things that would normally be done in various functions |
14 | # and more. Many things that would normally be done in various functions |
| 12 | # can be accessed by setting variables instead, such as patching, |
15 | # 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 |
18 | # 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 |
19 | # 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 |
20 | # with the other X packages, you don't need to set SRC_URI. Pretty much |
| 18 | # everything else should be automatic. |
21 | # everything else should be automatic. |
| 19 | |
22 | |
| 20 | # Author: Tomáš Chvátal <scarabeus@gentoo.org> |
|
|
| 21 | # Author: Donnie Berkholz <dberkholz@gentoo.org> |
|
|
| 22 | |
|
|
| 23 | GIT_ECLASS="" |
23 | GIT_ECLASS="" |
| 24 | if [[ ${PV} == *9999* ]]; then |
24 | if [[ ${PV} == *9999* ]]; then |
| 25 | GIT_ECLASS="git-2" |
25 | GIT_ECLASS="git-2" |
| 26 | XORG_EAUTORECONF="yes" |
26 | XORG_EAUTORECONF="yes" |
| 27 | fi |
27 | fi |
| … | |
… | |
| 35 | # Activate font code in the rest of the eclass |
35 | # Activate font code in the rest of the eclass |
| 36 | FONT="yes" |
36 | FONT="yes" |
| 37 | FONT_ECLASS="font" |
37 | FONT_ECLASS="font" |
| 38 | fi |
38 | fi |
| 39 | |
39 | |
|
|
40 | # we need to inherit autotools first to get the deps |
| 40 | inherit autotools-utils eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
41 | inherit autotools autotools-utils eutils libtool multilib toolchain-funcs \ |
| 41 | ${FONT_ECLASS} ${GIT_ECLASS} |
42 | flag-o-matic ${FONT_ECLASS} ${GIT_ECLASS} |
| 42 | |
43 | |
| 43 | EXPORTED_FUNCTIONS="src_unpack src_compile src_install pkg_postinst pkg_postrm" |
44 | EXPORTED_FUNCTIONS="src_unpack src_compile src_install pkg_postinst pkg_postrm" |
| 44 | case "${EAPI:-0}" in |
45 | case "${EAPI:-0}" in |
| 45 | 3|4) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare src_configure" ;; |
46 | 3|4|5) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare src_configure" ;; |
| 46 | *) die "EAPI=${EAPI} is not supported" ;; |
47 | *) die "EAPI=${EAPI} is not supported" ;; |
| 47 | esac |
48 | esac |
| 48 | |
49 | |
| 49 | # exports must be ALWAYS after inherit |
50 | # exports must be ALWAYS after inherit |
| 50 | EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS} |
51 | EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS} |
| … | |
… | |
| 88 | # For git checkout the git repository might differ from package name. |
89 | # For git checkout the git repository might differ from package name. |
| 89 | # This variable can be used for proper directory specification |
90 | # This variable can be used for proper directory specification |
| 90 | : ${XORG_PACKAGE_NAME:=${PN}} |
91 | : ${XORG_PACKAGE_NAME:=${PN}} |
| 91 | |
92 | |
| 92 | if [[ -n ${GIT_ECLASS} ]]; then |
93 | if [[ -n ${GIT_ECLASS} ]]; then |
| 93 | : ${EGIT_REPO_URI:="git://anongit.freedesktop.org/git/xorg/${XORG_MODULE}${XORG_PACKAGE_NAME}"} |
94 | : ${EGIT_REPO_URI:="git://anongit.freedesktop.org/xorg/${XORG_MODULE}${XORG_PACKAGE_NAME} http://anongit.freedesktop.org/git/xorg/${XORG_MODULE}${XORG_PACKAGE_NAME}"} |
| 94 | elif [[ -n ${XORG_BASE_INDIVIDUAL_URI} ]]; then |
95 | elif [[ -n ${XORG_BASE_INDIVIDUAL_URI} ]]; then |
| 95 | SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/${XORG_MODULE}${P}.tar.bz2" |
96 | SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/${XORG_MODULE}${P}.tar.bz2" |
| 96 | fi |
97 | fi |
| 97 | |
98 | |
| 98 | : ${SLOT:=0} |
99 | : ${SLOT:=0} |
| … | |
… | |
| 107 | XORG_EAUTORECONF_ARCHES="x86-interix ppc-aix x86-winnt" |
108 | XORG_EAUTORECONF_ARCHES="x86-interix ppc-aix x86-winnt" |
| 108 | EAUTORECONF_DEPEND+=" |
109 | EAUTORECONF_DEPEND+=" |
| 109 | >=sys-devel/libtool-2.2.6a |
110 | >=sys-devel/libtool-2.2.6a |
| 110 | sys-devel/m4" |
111 | sys-devel/m4" |
| 111 | if [[ ${PN} != util-macros ]] ; then |
112 | if [[ ${PN} != util-macros ]] ; then |
| 112 | EAUTORECONF_DEPEND+=" >=x11-misc/util-macros-1.13.0" |
113 | EAUTORECONF_DEPEND+=" >=x11-misc/util-macros-1.17" |
| 113 | # Required even by xorg-server |
114 | # Required even by xorg-server |
| 114 | [[ ${PN} == "font-util" ]] || EAUTORECONF_DEPEND+=" >=media-fonts/font-util-1.2.0" |
115 | [[ ${PN} == "font-util" ]] || EAUTORECONF_DEPEND+=" >=media-fonts/font-util-1.2.0" |
| 115 | fi |
116 | fi |
| 116 | WANT_AUTOCONF="latest" |
117 | WANT_AUTOCONF="latest" |
| 117 | WANT_AUTOMAKE="latest" |
118 | WANT_AUTOMAKE="latest" |
| … | |
… | |
| 173 | && ${PN} != xorg-cf-files \ |
174 | && ${PN} != xorg-cf-files \ |
| 174 | && ${PN/xcursor} = ${PN} ]]; then |
175 | && ${PN/xcursor} = ${PN} ]]; then |
| 175 | IUSE+=" static-libs" |
176 | IUSE+=" static-libs" |
| 176 | fi |
177 | fi |
| 177 | |
178 | |
| 178 | DEPEND+=" >=dev-util/pkgconfig-0.23" |
179 | DEPEND+=" virtual/pkgconfig" |
| 179 | |
180 | |
| 180 | # @ECLASS-VARIABLE: XORG_DRI |
181 | # @ECLASS-VARIABLE: XORG_DRI |
| 181 | # @DESCRIPTION: |
182 | # @DESCRIPTION: |
| 182 | # Possible values are "always" or the value of the useflag DRI capabilities |
183 | # Possible values are "always" or the value of the useflag DRI capabilities |
| 183 | # are required for. Default value is "no" |
184 | # are required for. Default value is "no" |
| … | |
… | |
| 311 | # Patch directory is ${WORKDIR}/patch |
312 | # Patch directory is ${WORKDIR}/patch |
| 312 | # See epatch() in eutils.eclass for more documentation |
313 | # See epatch() in eutils.eclass for more documentation |
| 313 | EPATCH_SUFFIX=${EPATCH_SUFFIX:=patch} |
314 | EPATCH_SUFFIX=${EPATCH_SUFFIX:=patch} |
| 314 | |
315 | |
| 315 | [[ -d "${EPATCH_SOURCE}" ]] && epatch |
316 | [[ -d "${EPATCH_SOURCE}" ]] && epatch |
| 316 | autotools-utils_src_prepare "$@" |
|
|
| 317 | } |
317 | } |
| 318 | |
318 | |
| 319 | # @FUNCTION: xorg-2_reconf_source |
319 | # @FUNCTION: xorg-2_reconf_source |
| 320 | # @DESCRIPTION: |
320 | # @DESCRIPTION: |
| 321 | # Run eautoreconf if necessary, and run elibtoolize. |
321 | # Run eautoreconf if necessary, and run elibtoolize. |
| … | |
… | |
| 323 | debug-print-function ${FUNCNAME} "$@" |
323 | debug-print-function ${FUNCNAME} "$@" |
| 324 | |
324 | |
| 325 | case ${CHOST} in |
325 | case ${CHOST} in |
| 326 | *-interix* | *-aix* | *-winnt*) |
326 | *-interix* | *-aix* | *-winnt*) |
| 327 | # some hosts need full eautoreconf |
327 | # some hosts need full eautoreconf |
| 328 | [[ -e "./configure.ac" || -e "./configure.in" ]] && eautoreconf || ewarn "Unable to autoreconf the configure script. Things may fail." |
328 | [[ -e "./configure.ac" || -e "./configure.in" ]] \ |
|
|
329 | && AUTOTOOLS_AUTORECONF=1 |
| 329 | ;; |
330 | ;; |
| 330 | *) |
331 | *) |
| 331 | # elibtoolize required for BSD |
332 | # elibtoolize required for BSD |
| 332 | [[ ${XORG_EAUTORECONF} != no && ( -e "./configure.ac" || -e "./configure.in" ) ]] && eautoreconf || elibtoolize |
333 | [[ ${XORG_EAUTORECONF} != no && ( -e "./configure.ac" || -e "./configure.in" ) ]] \ |
|
|
334 | && AUTOTOOLS_AUTORECONF=1 |
| 333 | ;; |
335 | ;; |
| 334 | esac |
336 | esac |
| 335 | } |
337 | } |
| 336 | |
338 | |
| 337 | # @FUNCTION: xorg-2_src_prepare |
339 | # @FUNCTION: xorg-2_src_prepare |
| … | |
… | |
| 340 | xorg-2_src_prepare() { |
342 | xorg-2_src_prepare() { |
| 341 | debug-print-function ${FUNCNAME} "$@" |
343 | debug-print-function ${FUNCNAME} "$@" |
| 342 | |
344 | |
| 343 | xorg-2_patch_source |
345 | xorg-2_patch_source |
| 344 | xorg-2_reconf_source |
346 | xorg-2_reconf_source |
|
|
347 | autotools-utils_src_prepare "$@" |
| 345 | } |
348 | } |
| 346 | |
349 | |
| 347 | # @FUNCTION: xorg-2_font_configure |
350 | # @FUNCTION: xorg-2_font_configure |
| 348 | # @DESCRIPTION: |
351 | # @DESCRIPTION: |
| 349 | # If a font package, perform any necessary configuration steps |
352 | # If a font package, perform any necessary configuration steps |
| … | |
… | |
| 408 | # @DESCRIPTION: |
411 | # @DESCRIPTION: |
| 409 | # Array of an additional options to pass to configure. |
412 | # Array of an additional options to pass to configure. |
| 410 | # @DEFAULT_UNSET |
413 | # @DEFAULT_UNSET |
| 411 | if [[ $(declare -p XORG_CONFIGURE_OPTIONS 2>&-) != "declare -a"* ]]; then |
414 | if [[ $(declare -p XORG_CONFIGURE_OPTIONS 2>&-) != "declare -a"* ]]; then |
| 412 | # fallback to CONFIGURE_OPTIONS, deprecated. |
415 | # fallback to CONFIGURE_OPTIONS, deprecated. |
| 413 | [[ -n "${CONFIGURE_OPTIONS}" ]] && \ |
416 | if [[ -n "${CONFIGURE_OPTIONS}" ]]; then |
| 414 | ewarn "QA: CONFIGURE_OPTIONS are deprecated. Please migrate to XORG_CONFIGURE_OPTIONS to preserve namespace." |
417 | eqawarn "CONFIGURE_OPTIONS are deprecated. Please migrate to XORG_CONFIGURE_OPTIONS" |
|
|
418 | eqawarn "to preserve namespace." |
|
|
419 | fi |
|
|
420 | |
| 415 | local xorgconfadd=(${CONFIGURE_OPTIONS}) |
421 | local xorgconfadd=(${CONFIGURE_OPTIONS} ${XORG_CONFIGURE_OPTIONS}) |
| 416 | else |
422 | else |
| 417 | local xorgconfadd=("${XORG_CONFIGURE_OPTIONS[@]}") |
423 | local xorgconfadd=("${XORG_CONFIGURE_OPTIONS[@]}") |
| 418 | fi |
424 | fi |
| 419 | |
425 | |
| 420 | [[ -n "${FONT}" ]] && xorg-2_font_configure |
426 | [[ -n "${FONT}" ]] && xorg-2_font_configure |
|
|
427 | |
|
|
428 | # Check if package supports disabling of dep tracking |
|
|
429 | # Fixes warnings like: |
|
|
430 | # WARNING: unrecognized options: --disable-dependency-tracking |
|
|
431 | if grep -q -s "disable-depencency-tracking" ${ECONF_SOURCE:-.}/configure; then |
|
|
432 | local dep_track="--disable-dependency-tracking" |
|
|
433 | fi |
|
|
434 | |
| 421 | local myeconfargs=( |
435 | local myeconfargs=( |
| 422 | --disable-dependency-tracking |
436 | ${dep_track} |
| 423 | ${FONT_OPTIONS} |
437 | ${FONT_OPTIONS} |
| 424 | "${xorgconfadd[@]}" |
438 | "${xorgconfadd[@]}" |
| 425 | ) |
439 | ) |
| 426 | |
440 | |
| 427 | autotools-utils_src_configure "$@" |
441 | autotools-utils_src_configure "$@" |
| … | |
… | |
| 460 | |
474 | |
| 461 | if [[ -e "${S}"/ChangeLog ]]; then |
475 | if [[ -e "${S}"/ChangeLog ]]; then |
| 462 | dodoc "${S}"/ChangeLog || die "dodoc failed" |
476 | dodoc "${S}"/ChangeLog || die "dodoc failed" |
| 463 | fi |
477 | fi |
| 464 | |
478 | |
| 465 | # Don't install libtool archives (even with static-libs) |
479 | # Don't install libtool archives (even for modules) |
| 466 | remove_libtool_files all |
480 | prune_libtool_files --all |
| 467 | |
481 | |
| 468 | [[ -n ${FONT} ]] && remove_font_metadata |
482 | [[ -n ${FONT} ]] && remove_font_metadata |
| 469 | } |
483 | } |
| 470 | |
484 | |
| 471 | # @FUNCTION: xorg-2_pkg_postinst |
485 | # @FUNCTION: xorg-2_pkg_postinst |
| … | |
… | |
| 473 | # Run X-specific post-installation tasks on the live filesystem. The |
487 | # Run X-specific post-installation tasks on the live filesystem. The |
| 474 | # only task right now is some setup for font packages. |
488 | # only task right now is some setup for font packages. |
| 475 | xorg-2_pkg_postinst() { |
489 | xorg-2_pkg_postinst() { |
| 476 | debug-print-function ${FUNCNAME} "$@" |
490 | debug-print-function ${FUNCNAME} "$@" |
| 477 | |
491 | |
| 478 | [[ -n ${FONT} ]] && setup_fonts "$@" |
492 | if [[ -n ${FONT} ]]; then |
|
|
493 | create_fonts_scale |
|
|
494 | create_fonts_dir |
|
|
495 | font_pkg_postinst "$@" |
|
|
496 | fi |
| 479 | } |
497 | } |
| 480 | |
498 | |
| 481 | # @FUNCTION: xorg-2_pkg_postrm |
499 | # @FUNCTION: xorg-2_pkg_postrm |
| 482 | # @DESCRIPTION: |
500 | # @DESCRIPTION: |
| 483 | # 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 |
| 484 | # task right now is some cleanup for font packages. |
502 | # task right now is some cleanup for font packages. |
| 485 | xorg-2_pkg_postrm() { |
503 | xorg-2_pkg_postrm() { |
| 486 | debug-print-function ${FUNCNAME} "$@" |
504 | debug-print-function ${FUNCNAME} "$@" |
| 487 | |
505 | |
| 488 | [[ -n ${FONT} ]] && font_pkg_postrm "$@" |
506 | if [[ -n ${FONT} ]]; then |
| 489 | } |
507 | # if we're doing an upgrade, postinst will do |
| 490 | |
508 | if [[ ${EAPI} -lt 4 || -z ${REPLACED_BY_VERSION} ]]; then |
| 491 | # @FUNCTION: setup_fonts |
|
|
| 492 | # @DESCRIPTION: |
|
|
| 493 | # Generates needed files for fonts and fixes font permissions |
|
|
| 494 | setup_fonts() { |
|
|
| 495 | debug-print-function ${FUNCNAME} "$@" |
|
|
| 496 | |
|
|
| 497 | create_fonts_scale |
509 | create_fonts_scale |
| 498 | create_fonts_dir |
510 | create_fonts_dir |
| 499 | font_pkg_postinst |
511 | font_pkg_postrm "$@" |
|
|
512 | fi |
|
|
513 | fi |
| 500 | } |
514 | } |
| 501 | |
515 | |
| 502 | # @FUNCTION: remove_font_metadata |
516 | # @FUNCTION: remove_font_metadata |
| 503 | # @DESCRIPTION: |
517 | # @DESCRIPTION: |
| 504 | # Don't let the package install generated font files that may overlap |
518 | # Don't let the package install generated font files that may overlap |
| … | |
… | |
| 517 | # Create fonts.scale file, used by the old server-side fonts subsystem. |
531 | # Create fonts.scale file, used by the old server-side fonts subsystem. |
| 518 | create_fonts_scale() { |
532 | create_fonts_scale() { |
| 519 | debug-print-function ${FUNCNAME} "$@" |
533 | debug-print-function ${FUNCNAME} "$@" |
| 520 | |
534 | |
| 521 | if [[ ${FONT_DIR} != Speedo && ${FONT_DIR} != CID ]]; then |
535 | if [[ ${FONT_DIR} != Speedo && ${FONT_DIR} != CID ]]; then |
| 522 | ebegin "Generating font.scale" |
536 | ebegin "Generating fonts.scale" |
| 523 | mkfontscale \ |
537 | mkfontscale \ |
| 524 | -a "${EROOT}/usr/share/fonts/encodings/encodings.dir" \ |
538 | -a "${EROOT}/usr/share/fonts/encodings/encodings.dir" \ |
| 525 | -- "${EROOT}/usr/share/fonts/${FONT_DIR}" |
539 | -- "${EROOT}/usr/share/fonts/${FONT_DIR}" |
| 526 | eend $? |
540 | eend $? |
| 527 | fi |
541 | fi |