| 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.38 2006/01/05 07:24:03 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.51 2006/04/03 02:03:04 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. |
| … | |
… | |
| 25 | # |
25 | # |
| 26 | # Pretty much everything else should be automatic. |
26 | # Pretty much everything else should be automatic. |
| 27 | |
27 | |
| 28 | 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 |
| 29 | |
29 | |
| 30 | inherit eutils libtool toolchain-funcs |
30 | inherit eutils libtool toolchain-funcs flag-o-matic autotools |
| 31 | |
31 | |
| 32 | # Directory prefix to use for everything |
32 | # Directory prefix to use for everything |
| 33 | XDIR="/usr" |
33 | XDIR="/usr" |
| 34 | |
34 | |
| 35 | # Set up default patchset version(s) if necessary |
35 | # Set up default patchset version(s) if necessary |
| … | |
… | |
| 38 | XDPVER="1" |
38 | XDPVER="1" |
| 39 | fi |
39 | fi |
| 40 | |
40 | |
| 41 | IUSE="" |
41 | IUSE="" |
| 42 | HOMEPAGE="http://xorg.freedesktop.org/" |
42 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 43 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0/src/everything/${P}.tar.bz2 |
43 | |
| 44 | http://xorg.freedesktop.org/releases/X11R7.0-RC4/everything/${P}.tar.bz2 |
44 | # Set up SRC_URI for individual modular releases |
| 45 | http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
45 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
| 46 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
46 | if [[ ${CATEGORY} = x11-apps ]]; then |
| 47 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
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} |
| 48 | 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" |
| 49 | LICENSE="X11" |
77 | |
| 50 | 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} |
| 51 | |
83 | |
| 52 | # Set up shared dependencies |
84 | # Set up shared dependencies |
| 53 | if [[ -n "${SNAPSHOT}" ]]; then |
85 | if [[ -n "${SNAPSHOT}" ]]; then |
| 54 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
86 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 55 | DEPEND="${DEPEND} |
87 | DEPEND="${DEPEND} |
| … | |
… | |
| 59 | >=sys-devel/m4-1.4" |
91 | >=sys-devel/m4-1.4" |
| 60 | fi |
92 | fi |
| 61 | |
93 | |
| 62 | # 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 |
| 63 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
95 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
96 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
| 64 | && [[ "${PN}" != "font-alias" ]] \ |
97 | && [[ "${PN}" != "font-alias" ]] \ |
| 65 | && [[ "${PN}" != "font-util" ]]; then |
98 | && [[ "${PN}" != "font-util" ]]; then |
| 66 | # Activate font code in the rest of the eclass |
99 | # Activate font code in the rest of the eclass |
| 67 | FONT="yes" |
100 | FONT="yes" |
| 68 | |
101 | |
| … | |
… | |
| 106 | # Add driver patchset to SRC_URI |
139 | # Add driver patchset to SRC_URI |
| 107 | SRC_URI="${SRC_URI} |
140 | SRC_URI="${SRC_URI} |
| 108 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
141 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
| 109 | fi |
142 | fi |
| 110 | |
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 |
|
|
161 | fi |
|
|
162 | |
| 111 | DEPEND="${DEPEND} |
163 | DEPEND="${DEPEND} |
| 112 | >=dev-util/pkgconfig-0.18 |
164 | >=dev-util/pkgconfig-0.18" |
|
|
165 | |
|
|
166 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
|
|
167 | DEPEND="${DEPEND} |
| 113 | >=x11-misc/util-macros-0.99.2" |
168 | >=x11-misc/util-macros-0.99.2" |
|
|
169 | fi |
| 114 | |
170 | |
| 115 | # >=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 |
| 116 | RDEPEND="${RDEPEND} |
172 | RDEPEND="${RDEPEND} |
| 117 | !<=x11-base/xorg-x11-6.9 |
173 | !<=x11-base/xorg-x11-6.9 |
| 118 | >=sys-apps/man-1.6b-r2" |
174 | >=sys-apps/man-1.6b-r2" |
| … | |
… | |
| 163 | if [[ "${SNAPSHOT}" = "yes" ]] |
219 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 164 | then |
220 | then |
| 165 | # If possible, generate configure if it doesn't exist |
221 | # If possible, generate configure if it doesn't exist |
| 166 | if [ -f "${S}/configure.ac" ] |
222 | if [ -f "${S}/configure.ac" ] |
| 167 | then |
223 | then |
| 168 | einfo "Running autoreconf..." |
224 | eautoreconf |
| 169 | autoreconf -v --force --install |
|
|
| 170 | fi |
225 | fi |
| 171 | fi |
226 | fi |
| 172 | |
227 | |
| 173 | } |
228 | } |
| 174 | |
229 | |
| 175 | x-modular_src_unpack() { |
230 | x-modular_src_unpack() { |
| 176 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
231 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
| 177 | if gcc-specs-now; then |
232 | if gcc-specs-now; then |
| 178 | msg="Do not emerge ${PN} without vanilla gcc!" |
233 | msg="${PN} does not work with hardened gcc specs. Switch to vanilla gcc specs to emerge ${PN}." |
| 179 | eerror "$msg" |
234 | eerror "$msg" |
| 180 | die "$msg" |
235 | die "$msg" |
| 181 | fi |
236 | fi |
| 182 | fi |
237 | fi |
| 183 | |
238 | |
| … | |
… | |
| 215 | --disable-koi8-r" |
270 | --disable-koi8-r" |
| 216 | fi |
271 | fi |
| 217 | fi |
272 | fi |
| 218 | } |
273 | } |
| 219 | |
274 | |
|
|
275 | x-modular_debug_setup() { |
|
|
276 | if [[ -n "${DEBUGGABLE}" ]]; then |
|
|
277 | if use debug; then |
|
|
278 | strip-flags |
|
|
279 | append-flags -g |
|
|
280 | fi |
|
|
281 | fi |
|
|
282 | } |
|
|
283 | |
| 220 | x-modular_src_configure() { |
284 | x-modular_src_configure() { |
| 221 | x-modular_font_configure |
285 | x-modular_font_configure |
|
|
286 | x-modular_debug_setup |
| 222 | |
287 | |
| 223 | # If prefix isn't set here, .pc files cause problems |
288 | # If prefix isn't set here, .pc files cause problems |
| 224 | if [[ -x ./configure ]]; then |
289 | if [[ -x ./configure ]]; then |
| 225 | econf --prefix=${XDIR} \ |
290 | econf --prefix=${XDIR} \ |
| 226 | --datadir=${XDIR}/share \ |
291 | --datadir=${XDIR}/share \ |
| … | |
… | |
| 251 | |
316 | |
| 252 | # Don't install libtool archives for server modules |
317 | # Don't install libtool archives for server modules |
| 253 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
318 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
| 254 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
319 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
| 255 | | xargs rm -f |
320 | | xargs rm -f |
|
|
321 | fi |
|
|
322 | |
|
|
323 | # Don't install overlapping fonts.* files |
|
|
324 | # Generate them instead when possible |
|
|
325 | if [[ -n "${FONT}" ]]; then |
|
|
326 | remove_font_metadata |
| 256 | fi |
327 | fi |
| 257 | } |
328 | } |
| 258 | |
329 | |
| 259 | x-modular_pkg_preinst() { |
330 | x-modular_pkg_preinst() { |
| 260 | if [[ -n "${FONT}" ]]; then |
331 | if [[ -n "${FONT}" ]]; then |
| … | |
… | |
| 318 | |
389 | |
| 319 | create_fonts_scale |
390 | create_fonts_scale |
| 320 | create_fonts_dir |
391 | create_fonts_dir |
| 321 | fix_font_permissions |
392 | fix_font_permissions |
| 322 | create_font_cache |
393 | create_font_cache |
|
|
394 | } |
|
|
395 | |
|
|
396 | remove_font_metadata() { |
|
|
397 | local DIR |
|
|
398 | for DIR in ${FONT_DIR}; do |
|
|
399 | if [[ "${DIR}" != "Speedo" ]] && \ |
|
|
400 | [[ "${DIR}" != "CID" ]] ; then |
|
|
401 | # Delete font metadata files |
|
|
402 | # fonts.scale, fonts.dir, fonts.cache-1 |
|
|
403 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
|
|
404 | fi |
|
|
405 | done |
| 323 | } |
406 | } |
| 324 | |
407 | |
| 325 | discover_font_dirs() { |
408 | discover_font_dirs() { |
| 326 | pushd ${IMAGE}/usr/share/fonts |
409 | pushd ${IMAGE}/usr/share/fonts |
| 327 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
410 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |