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.95 2008/04/13 04:44:16 dberkholz Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.99 2008/05/27 18:42:33 dberkholz 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. |
… | |
… | |
24 | # recently tested. You may need to uncomment the setting of datadir and |
24 | # recently tested. You may need to uncomment the setting of datadir and |
25 | # mandir in x-modular_src_install() or add it back in if it's no longer |
25 | # mandir in x-modular_src_install() or add it back in if it's no longer |
26 | # there. You may also want to change the SLOT. |
26 | # there. You may also want to change the SLOT. |
27 | XDIR="/usr" |
27 | XDIR="/usr" |
28 | |
28 | |
29 | if [[ -z "${XDPVER}" ]]; then |
|
|
30 | # @ECLASS-VARIABLE: XDPVER |
|
|
31 | # @DESCRIPTION: |
|
|
32 | # Set up default patchset version(s) if necessary for driver patches. If |
|
|
33 | # you want to change the auto-application of the driver patchset or |
|
|
34 | # prevent it from applying, edit XDPVER in the ebuild. Set it to -1 to |
|
|
35 | # prevent patch application or positive integers for that patch version. |
|
|
36 | # Set before inheriting this eclass. |
|
|
37 | XDPVER="1" |
|
|
38 | fi |
|
|
39 | |
|
|
40 | IUSE="" |
29 | IUSE="" |
41 | HOMEPAGE="http://xorg.freedesktop.org/" |
30 | HOMEPAGE="http://xorg.freedesktop.org/" |
42 | |
31 | |
43 | if [[ -z ${SNAPSHOT} ]]; then |
32 | if [[ -z ${SNAPSHOT} ]]; then |
44 | # @ECLASS-VARIABLE: SNAPSHOT |
33 | # @ECLASS-VARIABLE: SNAPSHOT |
… | |
… | |
54 | SRC_URI="" |
43 | SRC_URI="" |
55 | fi |
44 | fi |
56 | |
45 | |
57 | # Set up SRC_URI for individual modular releases |
46 | # Set up SRC_URI for individual modular releases |
58 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
47 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
|
|
48 | if [[ -z ${MODULE} ]]; then |
|
|
49 | # @ECLASS-VARIABLE: MODULE |
|
|
50 | # @DESCRIPTION: |
|
|
51 | # The subdirectory to download source from. Possible settings are app, |
|
|
52 | # doc, data, util, driver, font, lib, proto, xserver. Set above the |
|
|
53 | # inherit to override the default autoconfigured module. |
|
|
54 | MODULE="" |
59 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then |
55 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then |
60 | MODULE="app" |
56 | MODULE="app" |
61 | elif [[ ${CATEGORY} = app-doc ]]; then |
57 | elif [[ ${CATEGORY} = app-doc ]]; then |
62 | MODULE="doc" |
58 | MODULE="doc" |
63 | # x11-misc contains data and util, x11-themes contains data |
59 | # x11-misc contains data and util, x11-themes contains data |
64 | elif [[ ${CATEGORY} = x11-misc ]] || [[ ${CATEGORY} = x11-themes ]]; then |
60 | elif [[ ${CATEGORY} = x11-misc ]] || [[ ${CATEGORY} = x11-themes ]]; then |
65 | if [[ ${PN} == xbitmaps || ${PN} == xcursor-themes || ${PN} == xkbdata ]]; then |
61 | if [[ ${PN} == xbitmaps || ${PN} == xcursor-themes || ${PN} == xkbdata ]]; then |
66 | MODULE="data" |
62 | MODULE="data" |
67 | else |
63 | else |
68 | MODULE="util" |
64 | MODULE="util" |
69 | fi |
65 | fi |
70 | elif [[ ${CATEGORY} = x11-drivers ]]; then |
66 | elif [[ ${CATEGORY} = x11-drivers ]]; then |
71 | MODULE="driver" |
67 | MODULE="driver" |
72 | elif [[ ${CATEGORY} = media-fonts ]]; then |
68 | elif [[ ${CATEGORY} = media-fonts ]]; then |
73 | MODULE="font" |
69 | MODULE="font" |
74 | elif [[ ${CATEGORY} = x11-libs ]]; then |
70 | elif [[ ${CATEGORY} = x11-libs ]]; then |
75 | MODULE="lib" |
71 | MODULE="lib" |
76 | elif [[ ${CATEGORY} = x11-proto ]]; then |
72 | elif [[ ${CATEGORY} = x11-proto ]]; then |
77 | MODULE="proto" |
73 | MODULE="proto" |
78 | elif [[ ${CATEGORY} = x11-base ]]; then |
74 | elif [[ ${CATEGORY} = x11-base ]]; then |
79 | MODULE="xserver" |
75 | MODULE="xserver" |
|
|
76 | fi |
80 | fi |
77 | fi |
81 | |
78 | |
82 | if [[ -n ${GIT_ECLASS} ]]; then |
79 | if [[ -n ${GIT_ECLASS} ]]; then |
83 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${MODULE}/${PN}" |
80 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${MODULE}/${PN}" |
84 | else |
81 | else |
… | |
… | |
143 | |
140 | |
144 | # Set up configure option |
141 | # Set up configure option |
145 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
142 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
146 | |
143 | |
147 | if [[ -n "${FONT}" ]]; then |
144 | if [[ -n "${FONT}" ]]; then |
148 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]]; then |
145 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]] || [[ ${PN##*-} = cyrillic ]]; then |
149 | IUSE="${IUSE} nls" |
146 | IUSE="${IUSE} nls" |
150 | fi |
147 | fi |
151 | fi |
148 | fi |
152 | fi |
149 | fi |
153 | |
150 | |
154 | # If we're a driver package |
151 | # If we're a driver package |
155 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
152 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
156 | # Enable driver code in the rest of the eclass |
153 | # Enable driver code in the rest of the eclass |
157 | DRIVER="yes" |
154 | DRIVER="yes" |
158 | |
|
|
159 | if [[ ${XDPVER} != -1 ]]; then |
|
|
160 | # Add driver patchset to SRC_URI |
|
|
161 | SRC_URI="${SRC_URI} |
|
|
162 | mirror://gentoo/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
163 | fi |
|
|
164 | fi |
155 | fi |
165 | |
156 | |
166 | # Debugging -- ignore packages that can't be built with debugging |
157 | # Debugging -- ignore packages that can't be built with debugging |
167 | if [[ -z "${FONT}" ]] \ |
158 | if [[ -z "${FONT}" ]] \ |
168 | && [[ "${CATEGORY/app-doc}" = "${CATEGORY}" ]] \ |
159 | && [[ "${CATEGORY/app-doc}" = "${CATEGORY}" ]] \ |
… | |
… | |
265 | # Use standardized names and locations with bulk patching |
256 | # Use standardized names and locations with bulk patching |
266 | # Patch directory is ${WORKDIR}/patch |
257 | # Patch directory is ${WORKDIR}/patch |
267 | # See epatch() in eutils.eclass for more documentation |
258 | # See epatch() in eutils.eclass for more documentation |
268 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
259 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
269 | EPATCH_SUFFIX="patch" |
260 | EPATCH_SUFFIX="patch" |
270 | fi |
|
|
271 | |
|
|
272 | # If this is a driver package we need to fix man page install location. |
|
|
273 | # Running autoreconf will use the patched util-macros to make the |
|
|
274 | # change for us, so we only need to patch if it is not going to run. |
|
|
275 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]\ |
|
|
276 | && [[ ${XDPVER} != -1 ]]; then |
|
|
277 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
278 | fi |
261 | fi |
279 | |
262 | |
280 | # @VARIABLE: PATCHES |
263 | # @VARIABLE: PATCHES |
281 | # @DESCRIPTION: |
264 | # @DESCRIPTION: |
282 | # If you have any patches to apply, set PATCHES to their locations and epatch |
265 | # If you have any patches to apply, set PATCHES to their locations and epatch |
… | |
… | |
384 | x-modular_debug_setup |
367 | x-modular_debug_setup |
385 | |
368 | |
386 | # @VARIABLE: CONFIGURE_OPTIONS |
369 | # @VARIABLE: CONFIGURE_OPTIONS |
387 | # @DESCRIPTION: |
370 | # @DESCRIPTION: |
388 | # Any options to pass to configure |
371 | # Any options to pass to configure |
389 | [[ -n ${CONFIGURE_OPTIONTS} ]] |
372 | [[ -n ${CONFIGURE_OPTIONS} ]] |
390 | |
373 | |
391 | # If prefix isn't set here, .pc files cause problems |
374 | # If prefix isn't set here, .pc files cause problems |
392 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
375 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
393 | econf --prefix=${XDIR} \ |
376 | econf --prefix=${XDIR} \ |
394 | --datadir=${XDIR}/share \ |
377 | --datadir=${XDIR}/share \ |