| 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.29 2005/12/09 23:32:27 joshuabaergen Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.44 2006/02/15 21:07:00 spyderous Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Donnie Berkholz <spyderous@gentoo.org> |
5 | # Author: Donnie Berkholz <spyderous@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass is designed to reduce code duplication in the modularized X11 |
7 | # This eclass is designed to reduce code duplication in the modularized X11 |
| 8 | # ebuilds. |
8 | # ebuilds. |
| 9 | # |
9 | # |
| 10 | # If the ebuild installs fonts, set FONT="yes" at the top and set FONT_DIRS to |
10 | # Using this eclass: |
| 11 | # the subdirectories within /usr/share/fonts to which it installs fonts. |
11 | # |
|
|
12 | # Inherit it. If you need to run autoreconf for any reason (e.g., your patches |
|
|
13 | # apply to the autotools files rather than configure), set SNAPSHOT="yes". Set |
|
|
14 | # CONFIGURE_OPTIONS to everything you want to pass to the configure script. |
|
|
15 | # |
|
|
16 | # If you have any patches to apply, set PATCHES to their locations and epatch |
|
|
17 | # will apply them. It also handles epatch-style bulk patches, if you know how to |
|
|
18 | # use them and set the correct variables. If you don't, read eutils.eclass. |
|
|
19 | # |
|
|
20 | # If you're creating a font package and the suffix of PN is not equal to the |
|
|
21 | # subdirectory of /usr/share/fonts/ it should install into, set FONT_DIR to that |
|
|
22 | # directory or directories. |
|
|
23 | # |
|
|
24 | # IMPORTANT: Both SNAPSHOT and FONT_DIR must be set _before_ the inherit. |
|
|
25 | # |
|
|
26 | # Pretty much everything else should be automatic. |
| 12 | |
27 | |
| 13 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
28 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
| 14 | |
29 | |
| 15 | inherit eutils libtool toolchain-funcs |
30 | inherit eutils libtool toolchain-funcs flag-o-matic |
| 16 | |
31 | |
| 17 | # Directory prefix to use for everything |
32 | # Directory prefix to use for everything |
| 18 | XDIR="/usr" |
33 | XDIR="/usr" |
| 19 | |
34 | |
| 20 | # Set up default patchset version(s) if necessary |
35 | # Set up default patchset version(s) if necessary |
| … | |
… | |
| 23 | XDPVER="1" |
38 | XDPVER="1" |
| 24 | fi |
39 | fi |
| 25 | |
40 | |
| 26 | IUSE="" |
41 | IUSE="" |
| 27 | HOMEPAGE="http://xorg.freedesktop.org/" |
42 | HOMEPAGE="http://xorg.freedesktop.org/" |
|
|
43 | |
|
|
44 | # Set up SRC_URI for individual modular releases |
|
|
45 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
|
|
46 | if [[ ${CATEGORY} = x11-apps ]]; then |
|
|
47 | SRC_URI="${SRC_URI} |
|
|
48 | ${BASE_INDIVIDUAL_URI}/app/${P}.tar.bz2" |
|
|
49 | elif [[ ${CATEGORY} = app-doc ]]; then |
|
|
50 | SRC_URI="${SRC_URI} |
|
|
51 | ${BASE_INDIVIDUAL_URI}/doc/${P}.tar.bz2" |
|
|
52 | # x11-misc contains data and util, x11-themes contains data |
|
|
53 | elif [[ ${CATEGORY} = x11-misc ]] || [[ ${CATEGORY} = x11-themes ]]; then |
|
|
54 | SRC_URI="${SRC_URI} |
|
|
55 | ${BASE_INDIVIDUAL_URI}/data/${P}.tar.bz2 |
|
|
56 | ${BASE_INDIVIDUAL_URI}/util/${P}.tar.bz2" |
|
|
57 | elif [[ ${CATEGORY} = x11-drivers ]]; then |
|
|
58 | SRC_URI="${SRC_URI} |
|
|
59 | ${BASE_INDIVIDUAL_URI}/driver/${P}.tar.bz2" |
|
|
60 | elif [[ ${CATEGORY} = media-fonts ]]; then |
|
|
61 | SRC_URI="${SRC_URI} |
|
|
62 | ${BASE_INDIVIDUAL_URI}/font/${P}.tar.bz2" |
|
|
63 | elif [[ ${CATEGORY} = x11-libs ]]; then |
|
|
64 | SRC_URI="${SRC_URI} |
|
|
65 | ${BASE_INDIVIDUAL_URI}/lib/${P}.tar.bz2" |
|
|
66 | elif [[ ${CATEGORY} = x11-proto ]]; then |
|
|
67 | SRC_URI="${SRC_URI} |
|
|
68 | ${BASE_INDIVIDUAL_URI}/proto/${P}.tar.bz2" |
|
|
69 | elif [[ ${CATEGORY} = x11-base ]]; then |
|
|
70 | SRC_URI="${SRC_URI} |
|
|
71 | ${BASE_INDIVIDUAL_URI}/xserver/${P}.tar.bz2" |
|
|
72 | fi |
|
|
73 | |
|
|
74 | # SRC_URI for full releases |
|
|
75 | SRC_URI="${SRC_URI} |
|
|
76 | http://xorg.freedesktop.org/releases/X11R7.0/src/everything/${P}.tar.bz2 |
|
|
77 | http://xorg.freedesktop.org/releases/X11R7.0-RC4/everything/${P}.tar.bz2 |
| 28 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
78 | http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
| 29 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
79 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
| 30 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
80 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
| 31 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
81 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
| 32 | LICENSE="X11" |
82 | |
| 33 | SLOT="0" |
83 | SLOT="0" |
|
|
84 | |
|
|
85 | # Set the license for the package. This can be overridden by setting |
|
|
86 | # LICENSE after the inherit. |
|
|
87 | LICENSE=${PN} |
| 34 | |
88 | |
| 35 | # Set up shared dependencies |
89 | # Set up shared dependencies |
| 36 | if [[ -n "${SNAPSHOT}" ]]; then |
90 | if [[ -n "${SNAPSHOT}" ]]; then |
| 37 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
91 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 38 | DEPEND="${DEPEND} |
92 | DEPEND="${DEPEND} |
| … | |
… | |
| 48 | && [[ "${PN}" != "font-util" ]]; then |
102 | && [[ "${PN}" != "font-util" ]]; then |
| 49 | # Activate font code in the rest of the eclass |
103 | # Activate font code in the rest of the eclass |
| 50 | FONT="yes" |
104 | FONT="yes" |
| 51 | |
105 | |
| 52 | RDEPEND="${RDEPEND} |
106 | RDEPEND="${RDEPEND} |
| 53 | media-fonts/encodings" |
107 | media-fonts/encodings |
|
|
108 | x11-apps/mkfontscale |
|
|
109 | x11-apps/mkfontdir" |
| 54 | PDEPEND="${PDEPEND} |
110 | PDEPEND="${PDEPEND} |
| 55 | media-fonts/font-alias" |
111 | media-fonts/font-alias" |
| 56 | |
112 | |
| 57 | # Starting with 7.0RC3, we can specify the font directory |
113 | # Starting with 7.0RC3, we can specify the font directory |
| 58 | # But oddly, we can't do the same for encodings or font-alias |
114 | # But oddly, we can't do the same for encodings or font-alias |
| … | |
… | |
| 79 | fi |
135 | fi |
| 80 | fi |
136 | fi |
| 81 | |
137 | |
| 82 | # If we're a driver package |
138 | # If we're a driver package |
| 83 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
139 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 84 | # Don't build static driver modules |
|
|
| 85 | DRIVER_OPTIONS="--disable-static" |
|
|
| 86 | |
|
|
| 87 | # Enable driver code in the rest of the eclass |
140 | # Enable driver code in the rest of the eclass |
| 88 | DRIVER="yes" |
141 | DRIVER="yes" |
| 89 | |
142 | |
| 90 | # Add driver patchset to SRC_URI |
143 | # Add driver patchset to SRC_URI |
| 91 | SRC_URI="${SRC_URI} |
144 | SRC_URI="${SRC_URI} |
| 92 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
145 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
| 93 | fi |
146 | fi |
| 94 | |
147 | |
|
|
148 | # Debugging -- ignore packages that can't be built with debugging |
|
|
149 | if [[ -z "${FONT}" ]] \ |
|
|
150 | || [[ "${PN/app-doc}" != "${PN}" ]] \ |
|
|
151 | || [[ "${PN/x11-proto}" != "${PN}" ]] \ |
|
|
152 | || [[ "${PN/util-macros}" != "${PN}" ]] \ |
|
|
153 | || [[ "${PN/xbitmaps}" != "${PN}" ]] \ |
|
|
154 | || [[ "${PN/xkbdata}" != "${PN}" ]] \ |
|
|
155 | || [[ "${PN/xorg-cf-files}" != "${PN}" ]] \ |
|
|
156 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
|
|
157 | ; then |
|
|
158 | DEBUGGABLE="yes" |
|
|
159 | IUSE="${IUSE} debug" |
|
|
160 | if use debug; then |
|
|
161 | RESTRICT="${RESTRICT} nostrip" |
|
|
162 | fi |
|
|
163 | fi |
|
|
164 | |
| 95 | DEPEND="${DEPEND} |
165 | DEPEND="${DEPEND} |
| 96 | >=dev-util/pkgconfig-0.18 |
166 | >=dev-util/pkgconfig-0.18" |
|
|
167 | |
|
|
168 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
|
|
169 | DEPEND="${DEPEND} |
| 97 | >=x11-misc/util-macros-0.99.2" |
170 | >=x11-misc/util-macros-0.99.2" |
|
|
171 | fi |
| 98 | |
172 | |
| 99 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
173 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
| 100 | RDEPEND="${RDEPEND} |
174 | RDEPEND="${RDEPEND} |
| 101 | !<=x11-base/xorg-x11-6.9 |
175 | !<=x11-base/xorg-x11-6.9 |
| 102 | >=sys-apps/man-1.6b-r2" |
176 | >=sys-apps/man-1.6b-r2" |
| … | |
… | |
| 199 | --disable-koi8-r" |
273 | --disable-koi8-r" |
| 200 | fi |
274 | fi |
| 201 | fi |
275 | fi |
| 202 | } |
276 | } |
| 203 | |
277 | |
|
|
278 | x-modular_debug_setup() { |
|
|
279 | if [[ -n "${DEBUGGABLE}" ]]; then |
|
|
280 | if use debug; then |
|
|
281 | strip-flags |
|
|
282 | append-flags -g |
|
|
283 | fi |
|
|
284 | fi |
|
|
285 | } |
|
|
286 | |
| 204 | x-modular_src_configure() { |
287 | x-modular_src_configure() { |
| 205 | x-modular_font_configure |
288 | x-modular_font_configure |
|
|
289 | x-modular_debug_setup |
| 206 | |
290 | |
| 207 | # If prefix isn't set here, .pc files cause problems |
291 | # If prefix isn't set here, .pc files cause problems |
| 208 | if [[ -x ./configure ]]; then |
292 | if [[ -x ./configure ]]; then |
| 209 | econf --prefix=${XDIR} \ |
293 | econf --prefix=${XDIR} \ |
| 210 | --datadir=${XDIR}/share \ |
294 | --datadir=${XDIR}/share \ |