| 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.106 2009/03/03 16:26:20 remi Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.109 2009/05/14 12:40:55 remi 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 |
| … | |
… | |
| 84 | >=sys-devel/m4-1.4" |
116 | >=sys-devel/m4-1.4" |
| 85 | WANT_AUTOCONF="latest" |
117 | WANT_AUTOCONF="latest" |
| 86 | WANT_AUTOMAKE="latest" |
118 | WANT_AUTOMAKE="latest" |
| 87 | fi |
119 | fi |
| 88 | |
120 | |
| 89 | # If we're a font package, but not the font.alias one |
121 | 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} |
122 | RDEPEND="${RDEPEND} |
| 102 | media-fonts/encodings |
123 | media-fonts/encodings |
| 103 | x11-apps/mkfontscale |
124 | x11-apps/mkfontscale |
| 104 | x11-apps/mkfontdir" |
125 | x11-apps/mkfontdir" |
| 105 | PDEPEND="${PDEPEND} |
126 | PDEPEND="${PDEPEND} |
| … | |
… | |
| 168 | RDEPEND="${RDEPEND} |
189 | RDEPEND="${RDEPEND} |
| 169 | !<=x11-base/xorg-x11-6.9" |
190 | !<=x11-base/xorg-x11-6.9" |
| 170 | # Provides virtual/x11 for temporary use until packages are ported |
191 | # Provides virtual/x11 for temporary use until packages are ported |
| 171 | # x11-base/x11-env" |
192 | # x11-base/x11-env" |
| 172 | |
193 | |
| 173 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
|
|
| 174 | ${FONT_ECLASS} ${GIT_ECLASS} |
|
|
| 175 | |
|
|
| 176 | # @FUNCTION: x-modular_specs_check |
194 | # @FUNCTION: x-modular_specs_check |
| 177 | # @USAGE: |
195 | # @USAGE: |
| 178 | # @DESCRIPTION: |
196 | # @DESCRIPTION: |
| 179 | # Make any necessary changes related to gcc specs (generally hardened) |
197 | # Make any necessary changes related to gcc specs (generally hardened) |
| 180 | x-modular_specs_check() { |
198 | x-modular_specs_check() { |
| … | |
… | |
| 190 | # @DESCRIPTION: |
208 | # @DESCRIPTION: |
| 191 | # Ensures the server supports DRI if building a driver with DRI support |
209 | # Ensures the server supports DRI if building a driver with DRI support |
| 192 | x-modular_dri_check() { |
210 | x-modular_dri_check() { |
| 193 | # (#120057) Enabling DRI in drivers requires that the server was built with |
211 | # (#120057) Enabling DRI in drivers requires that the server was built with |
| 194 | # support for it |
212 | # support for it |
|
|
213 | # Starting with xorg-server 1.5.3, DRI support is always enabled unless |
|
|
214 | # USE=minimal is set (see bug #252084) |
| 195 | if [[ -n "${DRIVER}" ]]; then |
215 | if [[ -n "${DRIVER}" ]]; then |
| 196 | if has dri ${IUSE} && use dri; then |
216 | if has dri ${IUSE} && use dri; then |
| 197 | einfo "Checking for direct rendering capabilities ..." |
217 | einfo "Checking for direct rendering capabilities ..." |
|
|
218 | if has_version '>=x11-base/xorg-server-1.5.3'; then |
|
|
219 | if built_with_use x11-base/xorg-server minimal; then |
|
|
220 | die "You must build x11-base/xorg-server with USE=-minimal." |
|
|
221 | fi |
|
|
222 | else |
| 198 | if ! built_with_use --missing true x11-base/xorg-server dri; then |
223 | if ! built_with_use x11-base/xorg-server dri; then |
| 199 | die "You must build x11-base/xorg-server with USE=dri." |
224 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
225 | fi |
| 200 | fi |
226 | fi |
| 201 | fi |
227 | fi |
| 202 | fi |
228 | fi |
| 203 | } |
229 | } |
| 204 | |
230 | |
| … | |
… | |
| 287 | # Joshua Baergen - October 23, 2005 |
313 | # Joshua Baergen - October 23, 2005 |
| 288 | # Fix shared lib issues on MIPS, FBSD, etc etc |
314 | # Fix shared lib issues on MIPS, FBSD, etc etc |
| 289 | elibtoolize |
315 | elibtoolize |
| 290 | } |
316 | } |
| 291 | |
317 | |
|
|
318 | # @FUNCTION: x-modular_src_prepare |
|
|
319 | # @USAGE: |
|
|
320 | # @DESCRIPTION: |
|
|
321 | # Prepare a package after unpacking, performing all X-related tasks. |
|
|
322 | x-modular_src_prepare() { |
|
|
323 | [[ -n ${GIT_ECLASS} ]] && has src_prepare ${EXPORTED_FUNCTIONS} \ |
|
|
324 | && git_src_prepare |
|
|
325 | x-modular_patch_source |
|
|
326 | x-modular_reconf_source |
|
|
327 | } |
|
|
328 | |
| 292 | # @FUNCTION: x-modular_src_unpack |
329 | # @FUNCTION: x-modular_src_unpack |
| 293 | # @USAGE: |
330 | # @USAGE: |
| 294 | # @DESCRIPTION: |
331 | # @DESCRIPTION: |
| 295 | # Unpack a package, performing all X-related tasks. |
332 | # Unpack a package, performing all X-related tasks. |
| 296 | x-modular_src_unpack() { |
333 | x-modular_src_unpack() { |
| 297 | x-modular_specs_check |
334 | x-modular_specs_check |
| 298 | x-modular_server_supports_drivers_check |
335 | x-modular_server_supports_drivers_check |
| 299 | x-modular_dri_check |
336 | x-modular_dri_check |
| 300 | x-modular_unpack_source |
337 | x-modular_unpack_source |
| 301 | x-modular_patch_source |
338 | has src_prepare ${EXPORTED_FUNCTIONS} || x-modular_src_prepare |
| 302 | x-modular_reconf_source |
|
|
| 303 | } |
339 | } |
| 304 | |
340 | |
| 305 | # @FUNCTION: x-modular_font_configure |
341 | # @FUNCTION: x-modular_font_configure |
| 306 | # @USAGE: |
342 | # @USAGE: |
| 307 | # @DESCRIPTION: |
343 | # @DESCRIPTION: |
| … | |
… | |
| 375 | # Run make. |
411 | # Run make. |
| 376 | x-modular_src_make() { |
412 | x-modular_src_make() { |
| 377 | emake || die "emake failed" |
413 | emake || die "emake failed" |
| 378 | } |
414 | } |
| 379 | |
415 | |
| 380 | # @FUNCTION: x-modular_src_configure |
416 | # @FUNCTION: x-modular_src_compile |
| 381 | # @USAGE: |
417 | # @USAGE: |
| 382 | # @DESCRIPTION: |
418 | # @DESCRIPTION: |
| 383 | # Compile a package, performing all X-related tasks. |
419 | # Compile a package, performing all X-related tasks. |
| 384 | x-modular_src_compile() { |
420 | x-modular_src_compile() { |
| 385 | x-modular_src_configure |
421 | has src_configure ${EXPORTED_FUNCTIONS} || x-modular_src_configure |
| 386 | x-modular_src_make |
422 | x-modular_src_make |
| 387 | } |
423 | } |
| 388 | |
424 | |
| 389 | # @FUNCTION: x-modular_src_install |
425 | # @FUNCTION: x-modular_src_install |
| 390 | # @USAGE: |
426 | # @USAGE: |
| … | |
… | |
| 635 | # Create fonts.cache-1 files, used by the new client-side fonts |
671 | # Create fonts.cache-1 files, used by the new client-side fonts |
| 636 | # subsystem. |
672 | # subsystem. |
| 637 | create_font_cache() { |
673 | create_font_cache() { |
| 638 | font_pkg_postinst |
674 | font_pkg_postinst |
| 639 | } |
675 | } |
| 640 | |
|
|
| 641 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
|
|