| 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.28 2005/12/09 19:21:28 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.56 2006/05/14 19:17:09 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 autotools |
| 16 | |
31 | |
| 17 | # Directory prefix to use for everything |
32 | # Directory prefix to use for everything |
| 18 | XDIR="/usr" |
33 | XDIR="/usr" |
| 19 | |
34 | |
|
|
35 | # Set up default patchset version(s) if necessary |
|
|
36 | # x11-driver-patches |
|
|
37 | if [[ -z "${XDPVER}" ]]; then |
|
|
38 | XDPVER="1" |
|
|
39 | fi |
|
|
40 | |
| 20 | IUSE="" |
41 | IUSE="" |
| 21 | HOMEPAGE="http://xorg.freedesktop.org/" |
42 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 22 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
43 | |
| 23 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
44 | # Set up SRC_URI for individual modular releases |
| 24 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
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} |
| 25 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
76 | http://xorg.freedesktop.org/releases/X11R7.0/src/everything/${P}.tar.bz2" |
| 26 | LICENSE="X11" |
77 | |
| 27 | SLOT="0" |
78 | SLOT="0" |
|
|
79 | |
|
|
80 | # Set the license for the package. This can be overridden by setting |
|
|
81 | # LICENSE after the inherit. |
|
|
82 | LICENSE=${PN} |
| 28 | |
83 | |
| 29 | # Set up shared dependencies |
84 | # Set up shared dependencies |
| 30 | if [[ -n "${SNAPSHOT}" ]]; then |
85 | if [[ -n "${SNAPSHOT}" ]]; then |
| 31 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
86 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 32 | DEPEND="${DEPEND} |
87 | DEPEND="${DEPEND} |
| … | |
… | |
| 36 | >=sys-devel/m4-1.4" |
91 | >=sys-devel/m4-1.4" |
| 37 | fi |
92 | fi |
| 38 | |
93 | |
| 39 | # If we're a font package, but not the font.alias one |
94 | # If we're a font package, but not the font.alias one |
| 40 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
95 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
96 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
| 41 | && [[ "${PN}" != "font-alias" ]] \ |
97 | && [[ "${PN}" != "font-alias" ]] \ |
| 42 | && [[ "${PN}" != "font-util" ]]; then |
98 | && [[ "${PN}" != "font-util" ]]; then |
| 43 | # Activate font code in the rest of the eclass |
99 | # Activate font code in the rest of the eclass |
| 44 | FONT="yes" |
100 | FONT="yes" |
| 45 | |
101 | |
| 46 | RDEPEND="${RDEPEND} |
102 | RDEPEND="${RDEPEND} |
| 47 | media-fonts/encodings" |
103 | media-fonts/encodings |
|
|
104 | x11-apps/mkfontscale |
|
|
105 | x11-apps/mkfontdir" |
| 48 | PDEPEND="${PDEPEND} |
106 | PDEPEND="${PDEPEND} |
| 49 | media-fonts/font-alias" |
107 | media-fonts/font-alias" |
| 50 | |
108 | |
| 51 | # Starting with 7.0RC3, we can specify the font directory |
109 | # Starting with 7.0RC3, we can specify the font directory |
| 52 | # But oddly, we can't do the same for encodings or font-alias |
110 | # But oddly, we can't do the same for encodings or font-alias |
| … | |
… | |
| 73 | fi |
131 | fi |
| 74 | fi |
132 | fi |
| 75 | |
133 | |
| 76 | # If we're a driver package |
134 | # If we're a driver package |
| 77 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
135 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 78 | # Don't build static driver modules |
136 | # Enable driver code in the rest of the eclass |
| 79 | DRIVER_OPTIONS="--disable-static" |
137 | DRIVER="yes" |
|
|
138 | |
|
|
139 | # Add driver patchset to SRC_URI |
|
|
140 | SRC_URI="${SRC_URI} |
|
|
141 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
142 | fi |
|
|
143 | |
|
|
144 | # Debugging -- ignore packages that can't be built with debugging |
|
|
145 | if [[ -z "${FONT}" ]] \ |
|
|
146 | || [[ "${PN/app-doc}" != "${PN}" ]] \ |
|
|
147 | || [[ "${PN/x11-proto}" != "${PN}" ]] \ |
|
|
148 | || [[ "${PN/util-macros}" != "${PN}" ]] \ |
|
|
149 | || [[ "${PN/xbitmaps}" != "${PN}" ]] \ |
|
|
150 | || [[ "${PN/xkbdata}" != "${PN}" ]] \ |
|
|
151 | || [[ "${PN/xorg-cf-files}" != "${PN}" ]] \ |
|
|
152 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
|
|
153 | ; then |
|
|
154 | DEBUGGABLE="yes" |
|
|
155 | IUSE="${IUSE} debug" |
|
|
156 | if use debug; then |
|
|
157 | if ! has splitdebug ${FEATURES}; then |
|
|
158 | RESTRICT="${RESTRICT} nostrip" |
|
|
159 | fi |
|
|
160 | fi |
| 80 | fi |
161 | fi |
| 81 | |
162 | |
| 82 | DEPEND="${DEPEND} |
163 | DEPEND="${DEPEND} |
| 83 | >=dev-util/pkgconfig-0.18 |
164 | >=dev-util/pkgconfig-0.18" |
|
|
165 | |
|
|
166 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
|
|
167 | DEPEND="${DEPEND} |
| 84 | >=x11-misc/util-macros-0.99.2" |
168 | >=x11-misc/util-macros-0.99.2" |
|
|
169 | fi |
| 85 | |
170 | |
| 86 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
171 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
| 87 | RDEPEND="${RDEPEND} |
172 | RDEPEND="${RDEPEND} |
| 88 | !<=x11-base/xorg-x11-6.9 |
173 | !<=x11-base/xorg-x11-6.9 |
| 89 | >=sys-apps/man-1.6b-r2" |
174 | >=sys-apps/man-1.6b-r2" |
| 90 | # Provides virtual/x11 for temporary use until packages are ported |
175 | # Provides virtual/x11 for temporary use until packages are ported |
| 91 | # x11-base/x11-env" |
176 | # x11-base/x11-env" |
| 92 | |
177 | |
|
|
178 | x-modular_specs_check() { |
|
|
179 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
180 | if gcc-specs-now; then |
|
|
181 | msg="${PN} does not work with hardened gcc specs. Switch to vanilla gcc specs to emerge ${PN}." |
|
|
182 | eerror "$msg" |
|
|
183 | die "$msg" |
|
|
184 | fi |
|
|
185 | |
|
|
186 | # (#116698) breaks loading |
|
|
187 | filter-ldflags -Wl,-z,now |
|
|
188 | fi |
|
|
189 | } |
|
|
190 | |
|
|
191 | x-modular_dri_check() { |
|
|
192 | # (#120057) Enabling DRI in drivers requires that the server was built with |
|
|
193 | # support for it |
|
|
194 | if [[ -n "${DRIVER}" ]]; then |
|
|
195 | if has dri ${IUSE} && use dri; then |
|
|
196 | einfo "Checking for direct rendering capabilities ..." |
|
|
197 | if ! built_with_use x11-base/xorg-server dri; then |
|
|
198 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
199 | fi |
|
|
200 | fi |
|
|
201 | fi |
|
|
202 | } |
|
|
203 | |
| 93 | x-modular_unpack_source() { |
204 | x-modular_unpack_source() { |
| 94 | unpack ${A} |
205 | unpack ${A} |
| 95 | cd ${S} |
206 | cd ${S} |
| 96 | |
207 | |
| 97 | if [[ -n ${FONT_OPTIONS} ]]; then |
208 | if [[ -n ${FONT_OPTIONS} ]]; then |
| … | |
… | |
| 103 | # Use standardized names and locations with bulk patching |
214 | # Use standardized names and locations with bulk patching |
| 104 | # Patch directory is ${WORKDIR}/patch |
215 | # Patch directory is ${WORKDIR}/patch |
| 105 | # See epatch() in eutils.eclass for more documentation |
216 | # See epatch() in eutils.eclass for more documentation |
| 106 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
217 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
| 107 | EPATCH_SUFFIX="patch" |
218 | EPATCH_SUFFIX="patch" |
|
|
219 | fi |
|
|
220 | |
|
|
221 | # If this is a driver package we need to fix man page install location. |
|
|
222 | # Running autoreconf will use the patched util-macros to make the |
|
|
223 | # change for us, so we only need to patch if it is not going to run. |
|
|
224 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]; then |
|
|
225 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
| 108 | fi |
226 | fi |
| 109 | |
227 | |
| 110 | # For specific list of patches |
228 | # For specific list of patches |
| 111 | if [[ -n "${PATCHES}" ]] ; then |
229 | if [[ -n "${PATCHES}" ]] ; then |
| 112 | for PATCH in ${PATCHES} |
230 | for PATCH in ${PATCHES} |
| … | |
… | |
| 127 | if [[ "${SNAPSHOT}" = "yes" ]] |
245 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 128 | then |
246 | then |
| 129 | # If possible, generate configure if it doesn't exist |
247 | # If possible, generate configure if it doesn't exist |
| 130 | if [ -f "${S}/configure.ac" ] |
248 | if [ -f "${S}/configure.ac" ] |
| 131 | then |
249 | then |
| 132 | einfo "Running autoreconf..." |
250 | eautoreconf |
| 133 | autoreconf -v --force --install |
|
|
| 134 | fi |
|
|
| 135 | fi |
251 | fi |
|
|
252 | fi |
| 136 | |
253 | |
|
|
254 | # Joshua Baergen - October 23, 2005 |
|
|
255 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
256 | elibtoolize |
| 137 | } |
257 | } |
| 138 | |
258 | |
| 139 | x-modular_src_unpack() { |
259 | x-modular_src_unpack() { |
| 140 | for x in xorg-server xf86-video- xf86-input- ; do |
260 | x-modular_specs_check |
| 141 | if [[ ${PN:0:11} = $x ]] && gcc-specs-now; then |
261 | x-modular_dri_check |
| 142 | msg="Do not emerge ${PN} without vanilla gcc!" |
|
|
| 143 | eerror "$msg" |
|
|
| 144 | die "$msg" |
|
|
| 145 | fi |
|
|
| 146 | done |
|
|
| 147 | |
|
|
| 148 | x-modular_unpack_source |
262 | x-modular_unpack_source |
| 149 | x-modular_patch_source |
263 | x-modular_patch_source |
| 150 | x-modular_reconf_source |
264 | x-modular_reconf_source |
| 151 | |
|
|
| 152 | # Joshua Baergen - October 23, 2005 |
|
|
| 153 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
| 154 | elibtoolize |
|
|
| 155 | } |
265 | } |
| 156 | |
266 | |
| 157 | x-modular_font_configure() { |
267 | x-modular_font_configure() { |
| 158 | if [[ -n "${FONT}" ]]; then |
268 | if [[ -n "${FONT}" ]]; then |
| 159 | # Might be worth adding an option to configure your desired font |
269 | # Might be worth adding an option to configure your desired font |
| … | |
… | |
| 179 | --disable-koi8-r" |
289 | --disable-koi8-r" |
| 180 | fi |
290 | fi |
| 181 | fi |
291 | fi |
| 182 | } |
292 | } |
| 183 | |
293 | |
|
|
294 | x-modular_debug_setup() { |
|
|
295 | if [[ -n "${DEBUGGABLE}" ]]; then |
|
|
296 | if use debug; then |
|
|
297 | strip-flags |
|
|
298 | append-flags -g |
|
|
299 | fi |
|
|
300 | fi |
|
|
301 | } |
|
|
302 | |
| 184 | x-modular_src_configure() { |
303 | x-modular_src_configure() { |
| 185 | x-modular_font_configure |
304 | x-modular_font_configure |
|
|
305 | x-modular_debug_setup |
| 186 | |
306 | |
| 187 | # If prefix isn't set here, .pc files cause problems |
307 | # If prefix isn't set here, .pc files cause problems |
| 188 | if [[ -x ./configure ]]; then |
308 | if [[ -x ./configure ]]; then |
| 189 | econf --prefix=${XDIR} \ |
309 | econf --prefix=${XDIR} \ |
| 190 | --datadir=${XDIR}/share \ |
310 | --datadir=${XDIR}/share \ |
| … | |
… | |
| 211 | # Shouldn't be necessary in XDIR=/usr |
331 | # Shouldn't be necessary in XDIR=/usr |
| 212 | # einstall forces datadir, so we need to re-force it |
332 | # einstall forces datadir, so we need to re-force it |
| 213 | # datadir=${XDIR}/share \ |
333 | # datadir=${XDIR}/share \ |
| 214 | # mandir=${XDIR}/share/man \ |
334 | # mandir=${XDIR}/share/man \ |
| 215 | |
335 | |
|
|
336 | # Make sure docs get compressed |
|
|
337 | prepalldocs |
|
|
338 | |
| 216 | # Don't install libtool archives for server modules |
339 | # Don't install libtool archives for server modules |
| 217 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
340 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
| 218 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
341 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
| 219 | | xargs rm -f |
342 | | xargs rm -f |
|
|
343 | fi |
|
|
344 | |
|
|
345 | # Don't install overlapping fonts.* files |
|
|
346 | # Generate them instead when possible |
|
|
347 | if [[ -n "${FONT}" ]]; then |
|
|
348 | remove_font_metadata |
| 220 | fi |
349 | fi |
| 221 | } |
350 | } |
| 222 | |
351 | |
| 223 | x-modular_pkg_preinst() { |
352 | x-modular_pkg_preinst() { |
| 224 | if [[ -n "${FONT}" ]]; then |
353 | if [[ -n "${FONT}" ]]; then |
| … | |
… | |
| 282 | |
411 | |
| 283 | create_fonts_scale |
412 | create_fonts_scale |
| 284 | create_fonts_dir |
413 | create_fonts_dir |
| 285 | fix_font_permissions |
414 | fix_font_permissions |
| 286 | create_font_cache |
415 | create_font_cache |
|
|
416 | } |
|
|
417 | |
|
|
418 | remove_font_metadata() { |
|
|
419 | local DIR |
|
|
420 | for DIR in ${FONT_DIR}; do |
|
|
421 | if [[ "${DIR}" != "Speedo" ]] && \ |
|
|
422 | [[ "${DIR}" != "CID" ]] ; then |
|
|
423 | # Delete font metadata files |
|
|
424 | # fonts.scale, fonts.dir, fonts.cache-1 |
|
|
425 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
|
|
426 | fi |
|
|
427 | done |
| 287 | } |
428 | } |
| 288 | |
429 | |
| 289 | discover_font_dirs() { |
430 | discover_font_dirs() { |
| 290 | pushd ${IMAGE}/usr/share/fonts |
431 | pushd ${IMAGE}/usr/share/fonts |
| 291 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
432 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |