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.43 2011/05/08 12:27:09 scarabeus Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.57 2012/06/11 13:02:21 mgorny 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) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare src_configure" ;; |
46 | *) die "EAPI=${EAPI} is not supported" ;; |
47 | *) die "EAPI=${EAPI} is not supported" ;; |
… | |
… | |
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" |
… | |
… | |
213 | if [[ -n "${DRIVER}" ]]; then |
214 | if [[ -n "${DRIVER}" ]]; then |
214 | COMMON_DEPEND+=" |
215 | COMMON_DEPEND+=" |
215 | x11-base/xorg-server[xorg] |
216 | x11-base/xorg-server[xorg] |
216 | " |
217 | " |
217 | fi |
218 | fi |
218 | if [[ -n "${DRIVER}" && ${PN} == xf86-video-* ]]; then |
219 | if [[ -n "${DRIVER}" && ${PN} == xf86-input-* ]]; then |
219 | DEPEND+=" |
220 | DEPEND+=" |
220 | x11-proto/inputproto |
221 | x11-proto/inputproto |
221 | x11-proto/kbproto |
222 | x11-proto/kbproto |
222 | x11-proto/xproto |
223 | x11-proto/xproto |
223 | " |
224 | " |
… | |
… | |
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 |
… | |
… | |
460 | |
466 | |
461 | if [[ -e "${S}"/ChangeLog ]]; then |
467 | if [[ -e "${S}"/ChangeLog ]]; then |
462 | dodoc "${S}"/ChangeLog || die "dodoc failed" |
468 | dodoc "${S}"/ChangeLog || die "dodoc failed" |
463 | fi |
469 | fi |
464 | |
470 | |
465 | # Don't install libtool archives (even with static-libs) |
471 | # Don't install libtool archives (even for modules) |
466 | remove_libtool_files all |
472 | prune_libtool_files --all |
467 | |
473 | |
468 | [[ -n ${FONT} ]] && remove_font_metadata |
474 | [[ -n ${FONT} ]] && remove_font_metadata |
469 | } |
475 | } |
470 | |
476 | |
471 | # @FUNCTION: xorg-2_pkg_postinst |
477 | # @FUNCTION: xorg-2_pkg_postinst |
… | |
… | |
473 | # Run X-specific post-installation tasks on the live filesystem. The |
479 | # Run X-specific post-installation tasks on the live filesystem. The |
474 | # only task right now is some setup for font packages. |
480 | # only task right now is some setup for font packages. |
475 | xorg-2_pkg_postinst() { |
481 | xorg-2_pkg_postinst() { |
476 | debug-print-function ${FUNCNAME} "$@" |
482 | debug-print-function ${FUNCNAME} "$@" |
477 | |
483 | |
478 | [[ -n ${FONT} ]] && setup_fonts "$@" |
484 | if [[ -n ${FONT} ]]; then |
|
|
485 | create_fonts_scale |
|
|
486 | create_fonts_dir |
|
|
487 | font_pkg_postinst "$@" |
|
|
488 | fi |
479 | } |
489 | } |
480 | |
490 | |
481 | # @FUNCTION: xorg-2_pkg_postrm |
491 | # @FUNCTION: xorg-2_pkg_postrm |
482 | # @DESCRIPTION: |
492 | # @DESCRIPTION: |
483 | # Run X-specific post-removal tasks on the live filesystem. The only |
493 | # Run X-specific post-removal tasks on the live filesystem. The only |
484 | # task right now is some cleanup for font packages. |
494 | # task right now is some cleanup for font packages. |
485 | xorg-2_pkg_postrm() { |
495 | xorg-2_pkg_postrm() { |
486 | debug-print-function ${FUNCNAME} "$@" |
496 | debug-print-function ${FUNCNAME} "$@" |
487 | |
497 | |
488 | [[ -n ${FONT} ]] && font_pkg_postrm "$@" |
498 | if [[ -n ${FONT} ]]; then |
489 | } |
499 | # if we're doing an upgrade, postinst will do |
490 | |
500 | 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 |
501 | create_fonts_scale |
498 | create_fonts_dir |
502 | create_fonts_dir |
499 | font_pkg_postinst |
503 | font_pkg_postrm "$@" |
|
|
504 | fi |
|
|
505 | fi |
500 | } |
506 | } |
501 | |
507 | |
502 | # @FUNCTION: remove_font_metadata |
508 | # @FUNCTION: remove_font_metadata |
503 | # @DESCRIPTION: |
509 | # @DESCRIPTION: |
504 | # Don't let the package install generated font files that may overlap |
510 | # 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. |
523 | # Create fonts.scale file, used by the old server-side fonts subsystem. |
518 | create_fonts_scale() { |
524 | create_fonts_scale() { |
519 | debug-print-function ${FUNCNAME} "$@" |
525 | debug-print-function ${FUNCNAME} "$@" |
520 | |
526 | |
521 | if [[ ${FONT_DIR} != Speedo && ${FONT_DIR} != CID ]]; then |
527 | if [[ ${FONT_DIR} != Speedo && ${FONT_DIR} != CID ]]; then |
522 | ebegin "Generating font.scale" |
528 | ebegin "Generating fonts.scale" |
523 | mkfontscale \ |
529 | mkfontscale \ |
524 | -a "${EROOT}/usr/share/fonts/encodings/encodings.dir" \ |
530 | -a "${EROOT}/usr/share/fonts/encodings/encodings.dir" \ |
525 | -- "${EROOT}/usr/share/fonts/${FONT_DIR}" |
531 | -- "${EROOT}/usr/share/fonts/${FONT_DIR}" |
526 | eend $? |
532 | eend $? |
527 | fi |
533 | fi |