| 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.41 2006/02/01 02:04:54 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.61 2006/06/28 02:20:31 joshuabaergen 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 flag-o-matic |
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 ]] || [[ ${CATEGORY} = x11-wm ]]; then |
| 47 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
47 | SRC_URI="${SRC_URI} |
| 48 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
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 | |
| 49 | SLOT="0" |
74 | SLOT="0" |
| 50 | |
75 | |
| 51 | # Set the license for the package. This can be overridden by setting |
76 | # Set the license for the package. This can be overridden by setting |
| 52 | # LICENSE after the inherit. |
77 | # LICENSE after the inherit. |
| 53 | LICENSE=${PN} |
78 | LICENSE=${PN} |
| … | |
… | |
| 62 | >=sys-devel/m4-1.4" |
87 | >=sys-devel/m4-1.4" |
| 63 | fi |
88 | fi |
| 64 | |
89 | |
| 65 | # If we're a font package, but not the font.alias one |
90 | # If we're a font package, but not the font.alias one |
| 66 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
91 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
92 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
| 67 | && [[ "${PN}" != "font-alias" ]] \ |
93 | && [[ "${PN}" != "font-alias" ]] \ |
| 68 | && [[ "${PN}" != "font-util" ]]; then |
94 | && [[ "${PN}" != "font-util" ]]; then |
| 69 | # Activate font code in the rest of the eclass |
95 | # Activate font code in the rest of the eclass |
| 70 | FONT="yes" |
96 | FONT="yes" |
| 71 | |
97 | |
| … | |
… | |
| 122 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
148 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
| 123 | ; then |
149 | ; then |
| 124 | DEBUGGABLE="yes" |
150 | DEBUGGABLE="yes" |
| 125 | IUSE="${IUSE} debug" |
151 | IUSE="${IUSE} debug" |
| 126 | if use debug; then |
152 | if use debug; then |
|
|
153 | if ! has splitdebug ${FEATURES}; then |
| 127 | RESTRICT="${RESTRICT} nostrip" |
154 | RESTRICT="${RESTRICT} nostrip" |
|
|
155 | fi |
| 128 | fi |
156 | fi |
| 129 | fi |
157 | fi |
| 130 | |
158 | |
| 131 | DEPEND="${DEPEND} |
159 | DEPEND="${DEPEND} |
| 132 | >=dev-util/pkgconfig-0.18" |
160 | >=dev-util/pkgconfig-0.18" |
| 133 | |
161 | |
| 134 | if [[ "${PN/util-macros}" != "${PN}" ]]; then |
162 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
| 135 | DEPEND="${DEPEND} |
163 | DEPEND="${DEPEND} |
| 136 | >=x11-misc/util-macros-0.99.2" |
164 | >=x11-misc/util-macros-0.99.2" |
| 137 | fi |
165 | fi |
| 138 | |
166 | |
| 139 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
|
|
| 140 | RDEPEND="${RDEPEND} |
167 | RDEPEND="${RDEPEND} |
| 141 | !<=x11-base/xorg-x11-6.9 |
168 | !<=x11-base/xorg-x11-6.9" |
| 142 | >=sys-apps/man-1.6b-r2" |
|
|
| 143 | # Provides virtual/x11 for temporary use until packages are ported |
169 | # Provides virtual/x11 for temporary use until packages are ported |
| 144 | # x11-base/x11-env" |
170 | # x11-base/x11-env" |
|
|
171 | |
|
|
172 | x-modular_specs_check() { |
|
|
173 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
174 | if gcc-specs-now; then |
|
|
175 | msg="${PN} does not work with hardened gcc specs. Switch to vanilla gcc specs to emerge ${PN}." |
|
|
176 | eerror "$msg" |
|
|
177 | die "$msg" |
|
|
178 | fi |
|
|
179 | |
|
|
180 | # (#116698) breaks loading |
|
|
181 | filter-ldflags -Wl,-z,now |
|
|
182 | fi |
|
|
183 | } |
|
|
184 | |
|
|
185 | x-modular_dri_check() { |
|
|
186 | # (#120057) Enabling DRI in drivers requires that the server was built with |
|
|
187 | # support for it |
|
|
188 | if [[ -n "${DRIVER}" ]]; then |
|
|
189 | if has dri ${IUSE} && use dri; then |
|
|
190 | einfo "Checking for direct rendering capabilities ..." |
|
|
191 | if ! built_with_use x11-base/xorg-server dri; then |
|
|
192 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
193 | fi |
|
|
194 | fi |
|
|
195 | fi |
|
|
196 | } |
|
|
197 | |
|
|
198 | x-modular_server_supports_drivers_check() { |
|
|
199 | # (#135873) Only certain servers will actually use or be capable of |
|
|
200 | # building external drivers, including binary drivers. |
|
|
201 | if [[ -n "${DRIVER}" ]]; then |
|
|
202 | if ! built_with_use x11-base/xorg-server xorg; then |
|
|
203 | eerror "x11-base/xorg-server is not built with support for external drivers." |
|
|
204 | die "You must build x11-base/xorg-server with USE=xorg." |
|
|
205 | fi |
|
|
206 | fi |
|
|
207 | } |
| 145 | |
208 | |
| 146 | x-modular_unpack_source() { |
209 | x-modular_unpack_source() { |
| 147 | unpack ${A} |
210 | unpack ${A} |
| 148 | cd ${S} |
211 | cd ${S} |
| 149 | |
212 | |
| … | |
… | |
| 187 | if [[ "${SNAPSHOT}" = "yes" ]] |
250 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 188 | then |
251 | then |
| 189 | # If possible, generate configure if it doesn't exist |
252 | # If possible, generate configure if it doesn't exist |
| 190 | if [ -f "${S}/configure.ac" ] |
253 | if [ -f "${S}/configure.ac" ] |
| 191 | then |
254 | then |
| 192 | einfo "Running autoreconf..." |
255 | eautoreconf |
| 193 | autoreconf -v --force --install |
|
|
| 194 | fi |
|
|
| 195 | fi |
256 | fi |
|
|
257 | fi |
| 196 | |
258 | |
|
|
259 | # Joshua Baergen - October 23, 2005 |
|
|
260 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
261 | elibtoolize |
| 197 | } |
262 | } |
| 198 | |
263 | |
| 199 | x-modular_src_unpack() { |
264 | x-modular_src_unpack() { |
| 200 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
265 | x-modular_specs_check |
| 201 | if gcc-specs-now; then |
266 | x-modular_server_supports_drivers_check |
| 202 | msg="Do not emerge ${PN} without vanilla gcc!" |
267 | x-modular_dri_check |
| 203 | eerror "$msg" |
|
|
| 204 | die "$msg" |
|
|
| 205 | fi |
|
|
| 206 | fi |
|
|
| 207 | |
|
|
| 208 | x-modular_unpack_source |
268 | x-modular_unpack_source |
| 209 | x-modular_patch_source |
269 | x-modular_patch_source |
| 210 | x-modular_reconf_source |
270 | x-modular_reconf_source |
| 211 | |
|
|
| 212 | # Joshua Baergen - October 23, 2005 |
|
|
| 213 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
| 214 | elibtoolize |
|
|
| 215 | } |
271 | } |
| 216 | |
272 | |
| 217 | x-modular_font_configure() { |
273 | x-modular_font_configure() { |
| 218 | if [[ -n "${FONT}" ]]; then |
274 | if [[ -n "${FONT}" ]]; then |
| 219 | # Might be worth adding an option to configure your desired font |
275 | # Might be worth adding an option to configure your desired font |
| … | |
… | |
| 243 | |
299 | |
| 244 | x-modular_debug_setup() { |
300 | x-modular_debug_setup() { |
| 245 | if [[ -n "${DEBUGGABLE}" ]]; then |
301 | if [[ -n "${DEBUGGABLE}" ]]; then |
| 246 | if use debug; then |
302 | if use debug; then |
| 247 | strip-flags |
303 | strip-flags |
| 248 | append-flags -ggdb |
304 | append-flags -g |
| 249 | fi |
305 | fi |
| 250 | fi |
306 | fi |
| 251 | } |
307 | } |
| 252 | |
308 | |
| 253 | x-modular_src_configure() { |
309 | x-modular_src_configure() { |
| … | |
… | |
| 281 | # Shouldn't be necessary in XDIR=/usr |
337 | # Shouldn't be necessary in XDIR=/usr |
| 282 | # einstall forces datadir, so we need to re-force it |
338 | # einstall forces datadir, so we need to re-force it |
| 283 | # datadir=${XDIR}/share \ |
339 | # datadir=${XDIR}/share \ |
| 284 | # mandir=${XDIR}/share/man \ |
340 | # mandir=${XDIR}/share/man \ |
| 285 | |
341 | |
|
|
342 | if [[ -e ${S}/ChangeLog ]]; then |
|
|
343 | dodoc ${S}/ChangeLog |
|
|
344 | fi |
|
|
345 | |
|
|
346 | # Make sure docs get compressed |
|
|
347 | prepalldocs |
|
|
348 | |
| 286 | # Don't install libtool archives for server modules |
349 | # Don't install libtool archives for server modules |
| 287 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
350 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
| 288 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
351 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
| 289 | | xargs rm -f |
352 | | xargs rm -f |
|
|
353 | fi |
|
|
354 | |
|
|
355 | # Don't install overlapping fonts.* files |
|
|
356 | # Generate them instead when possible |
|
|
357 | if [[ -n "${FONT}" ]]; then |
|
|
358 | remove_font_metadata |
| 290 | fi |
359 | fi |
| 291 | } |
360 | } |
| 292 | |
361 | |
| 293 | x-modular_pkg_preinst() { |
362 | x-modular_pkg_preinst() { |
| 294 | if [[ -n "${FONT}" ]]; then |
363 | if [[ -n "${FONT}" ]]; then |
| … | |
… | |
| 352 | |
421 | |
| 353 | create_fonts_scale |
422 | create_fonts_scale |
| 354 | create_fonts_dir |
423 | create_fonts_dir |
| 355 | fix_font_permissions |
424 | fix_font_permissions |
| 356 | create_font_cache |
425 | create_font_cache |
|
|
426 | } |
|
|
427 | |
|
|
428 | remove_font_metadata() { |
|
|
429 | local DIR |
|
|
430 | for DIR in ${FONT_DIR}; do |
|
|
431 | if [[ "${DIR}" != "Speedo" ]] && \ |
|
|
432 | [[ "${DIR}" != "CID" ]] ; then |
|
|
433 | # Delete font metadata files |
|
|
434 | # fonts.scale, fonts.dir, fonts.cache-1 |
|
|
435 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
|
|
436 | fi |
|
|
437 | done |
| 357 | } |
438 | } |
| 358 | |
439 | |
| 359 | discover_font_dirs() { |
440 | discover_font_dirs() { |
| 360 | pushd ${IMAGE}/usr/share/fonts |
441 | pushd ${IMAGE}/usr/share/fonts |
| 361 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
442 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |