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.50 2006/04/02 00:07:55 kevquinn Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.52 2006/04/03 23:49:32 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 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 |
… | |
… | |
219 | if [[ "${SNAPSHOT}" = "yes" ]] |
219 | if [[ "${SNAPSHOT}" = "yes" ]] |
220 | then |
220 | then |
221 | # If possible, generate configure if it doesn't exist |
221 | # If possible, generate configure if it doesn't exist |
222 | if [ -f "${S}/configure.ac" ] |
222 | if [ -f "${S}/configure.ac" ] |
223 | then |
223 | then |
224 | einfo "Running autoreconf..." |
224 | eautoreconf |
225 | autoreconf -v --force --install |
|
|
226 | fi |
225 | fi |
227 | fi |
226 | fi |
228 | |
227 | |
229 | } |
228 | } |
230 | |
229 | |
… | |
… | |
312 | install |
311 | install |
313 | # Shouldn't be necessary in XDIR=/usr |
312 | # Shouldn't be necessary in XDIR=/usr |
314 | # einstall forces datadir, so we need to re-force it |
313 | # einstall forces datadir, so we need to re-force it |
315 | # datadir=${XDIR}/share \ |
314 | # datadir=${XDIR}/share \ |
316 | # mandir=${XDIR}/share/man \ |
315 | # mandir=${XDIR}/share/man \ |
|
|
316 | |
|
|
317 | # Make sure docs get compressed |
|
|
318 | prepalldocs |
317 | |
319 | |
318 | # Don't install libtool archives for server modules |
320 | # Don't install libtool archives for server modules |
319 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
321 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
320 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
322 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
321 | | xargs rm -f |
323 | | xargs rm -f |