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.69 2006/07/01 06:46:52 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.70 2006/07/01 20:41:12 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 autotools |
30 | inherit eutils libtool multilib 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 |
… | |
… | |
343 | |
343 | |
344 | # Make sure docs get compressed |
344 | # Make sure docs get compressed |
345 | prepalldocs |
345 | prepalldocs |
346 | |
346 | |
347 | # Don't install libtool archives for server modules |
347 | # Don't install libtool archives for server modules |
348 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
348 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
349 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
349 | find ${D}/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
350 | | xargs rm -f |
350 | | xargs rm -f |
351 | fi |
351 | fi |
352 | |
352 | |
353 | # Don't install overlapping fonts.* files |
353 | # Don't install overlapping fonts.* files |
354 | # Generate them instead when possible |
354 | # Generate them instead when possible |