| 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.14 2005/10/20 00:35:21 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.16 2005/10/23 18:02:17 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. |
| … | |
… | |
| 10 | # If the ebuild installs fonts, set FONT="yes" at the top and set FONT_DIRS to |
10 | # If the ebuild installs fonts, set FONT="yes" at the top and set FONT_DIRS to |
| 11 | # the subdirectories within /usr/share/fonts to which it installs fonts. |
11 | # the subdirectories within /usr/share/fonts to which it installs fonts. |
| 12 | |
12 | |
| 13 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst |
13 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst |
| 14 | |
14 | |
| 15 | inherit eutils |
15 | inherit eutils libtool |
| 16 | |
16 | |
| 17 | # Directory prefix to use for everything |
17 | # Directory prefix to use for everything |
| 18 | XDIR="/usr" |
18 | XDIR="/usr" |
| 19 | |
19 | |
| 20 | IUSE="" |
20 | IUSE="" |
| … | |
… | |
| 51 | DRIVER_OPTIONS="--disable-static" |
51 | DRIVER_OPTIONS="--disable-static" |
| 52 | fi |
52 | fi |
| 53 | |
53 | |
| 54 | DEPEND="${DEPEND} |
54 | DEPEND="${DEPEND} |
| 55 | >=dev-util/pkgconfig-0.18 |
55 | >=dev-util/pkgconfig-0.18 |
| 56 | x11-misc/util-macros" |
56 | >=x11-misc/util-macros-0.99.0_p20051007" |
| 57 | |
57 | |
| 58 | RDEPEND="${RDEPEND} |
58 | RDEPEND="${RDEPEND} |
| 59 | !<x11-base/xorg-x11-7" |
59 | !<x11-base/xorg-x11-7" |
| 60 | # Provides virtual/x11 for temporary use until packages are ported |
60 | # Provides virtual/x11 for temporary use until packages are ported |
| 61 | # x11-base/x11-env" |
61 | # x11-base/x11-env" |
| 62 | |
62 | |
| 63 | x-modular_unpack_source() { |
63 | x-modular_unpack_source() { |
| 64 | unpack ${A} |
64 | unpack ${A} |
| 65 | cd ${S} |
65 | cd ${S} |
|
|
66 | |
|
|
67 | # Joshua Baergen - October 23, 2005 |
|
|
68 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
69 | elibtoolize |
| 66 | } |
70 | } |
| 67 | |
71 | |
| 68 | x-modular_patch_source() { |
72 | x-modular_patch_source() { |
| 69 | # Use standardized names and locations with bulk patching |
73 | # Use standardized names and locations with bulk patching |
| 70 | # Patch directory is ${WORKDIR}/patch |
74 | # Patch directory is ${WORKDIR}/patch |