| 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.3 2005/08/14 23:04:02 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.22 2005/11/16 05:01:36 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. |
| 9 | # |
9 | # |
| 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_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 | # Change to /usr/X11R6 once it's standard |
|
|
| 19 | XDIR="/usr" |
18 | XDIR="/usr" |
| 20 | |
19 | |
| 21 | IUSE="" |
20 | IUSE="" |
| 22 | HOMEPAGE="http://xorg.freedesktop.org/" |
21 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 23 | SRC_URI="http://xorg.freedesktop.org/X11R7.0-RC0/everything/${P}.tar.bz2" |
22 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
|
|
23 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
|
|
24 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
| 24 | LICENSE="X11" |
25 | LICENSE="X11" |
| 25 | SLOT="0" |
26 | SLOT="0" |
| 26 | |
27 | |
| 27 | # Set up shared dependencies |
28 | # Set up shared dependencies |
| 28 | if [ -n "${SNAPSHOT}" ]; then |
29 | if [ -n "${SNAPSHOT}" ]; then |
| … | |
… | |
| 33 | >=sys-devel/libtool-1.5 |
34 | >=sys-devel/libtool-1.5 |
| 34 | >=sys-devel/m4-1.4" |
35 | >=sys-devel/m4-1.4" |
| 35 | fi |
36 | fi |
| 36 | |
37 | |
| 37 | # If we're a font package, but not the font.alias one |
38 | # If we're a font package, but not the font.alias one |
| 38 | if [[ "${PN/#font}" != "${PN}" ]] && [[ "${PN}" != "font-alias" ]]; then |
39 | if [[ "${PN/#font-}" != "${PN}" ]] && [[ "${PN}" != "font-alias" ]]; then |
|
|
40 | # Activate font code in the rest of the eclass |
|
|
41 | FONT="yes" |
|
|
42 | |
| 39 | RDEPEND="${RDEPEND} |
43 | RDEPEND="${RDEPEND} |
| 40 | media-fonts/encodings" |
44 | media-fonts/encodings" |
| 41 | PDEPEND="${PDEPEND} |
45 | PDEPEND="${PDEPEND} |
| 42 | media-fonts/font-alias" |
46 | media-fonts/font-alias" |
| 43 | fi |
47 | fi |
| 44 | |
48 | |
|
|
49 | # If we're a driver package |
|
|
50 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
|
|
51 | # Don't build static driver modules |
|
|
52 | DRIVER_OPTIONS="--disable-static" |
|
|
53 | fi |
|
|
54 | |
| 45 | DEPEND="${DEPEND} |
55 | DEPEND="${DEPEND} |
| 46 | dev-util/pkgconfig |
56 | >=dev-util/pkgconfig-0.18 |
| 47 | x11-misc/util-macros" |
57 | >=x11-misc/util-macros-0.99.0_p20051007" |
| 48 | |
58 | |
|
|
59 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
| 49 | RDEPEND="${RDEPEND}" |
60 | RDEPEND="${RDEPEND} |
| 50 | # Shouldn't be necessary once we're in a standard location |
61 | !<=x11-base/xorg-x11-6.9 |
|
|
62 | >=sys-apps/man-1.6b-r2" |
|
|
63 | # Provides virtual/x11 for temporary use until packages are ported |
| 51 | # x11-base/x11-env" |
64 | # x11-base/x11-env" |
| 52 | # FIXME: Uncomment once it's in portage |
|
|
| 53 | # !x11-base/xorg-x11" |
|
|
| 54 | |
65 | |
| 55 | x-modular_unpack_source() { |
66 | x-modular_unpack_source() { |
| 56 | unpack ${A} |
67 | unpack ${A} |
| 57 | cd ${S} |
68 | cd ${S} |
|
|
69 | |
|
|
70 | # Joshua Baergen - October 23, 2005 |
|
|
71 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
72 | elibtoolize |
| 58 | } |
73 | } |
| 59 | |
74 | |
| 60 | x-modular_patch_source() { |
75 | x-modular_patch_source() { |
| 61 | # Use standardized names and locations with bulk patching |
76 | # Use standardized names and locations with bulk patching |
| 62 | # Patch directory is ${WORKDIR}/patch |
77 | # Patch directory is ${WORKDIR}/patch |
| … | |
… | |
| 86 | then |
101 | then |
| 87 | # If possible, generate configure if it doesn't exist |
102 | # If possible, generate configure if it doesn't exist |
| 88 | if [ -f "${S}/configure.ac" ] |
103 | if [ -f "${S}/configure.ac" ] |
| 89 | then |
104 | then |
| 90 | einfo "Running autoreconf..." |
105 | einfo "Running autoreconf..." |
| 91 | autoreconf -v --install |
106 | autoreconf -v --force --install |
| 92 | fi |
107 | fi |
| 93 | fi |
108 | fi |
| 94 | |
109 | |
| 95 | } |
110 | } |
| 96 | |
111 | |
| … | |
… | |
| 98 | x-modular_unpack_source |
113 | x-modular_unpack_source |
| 99 | x-modular_patch_source |
114 | x-modular_patch_source |
| 100 | x-modular_reconf_source |
115 | x-modular_reconf_source |
| 101 | } |
116 | } |
| 102 | |
117 | |
| 103 | x-modular_src_compile() { |
118 | x-modular_src_configure() { |
| 104 | # If prefix isn't set here, .pc files cause problems |
119 | # If prefix isn't set here, .pc files cause problems |
| 105 | if [ -x ./configure ]; then |
120 | if [ -x ./configure ]; then |
| 106 | econf --prefix=${XDIR} \ |
121 | econf --prefix=${XDIR} \ |
| 107 | --datadir=${XDIR}/share \ |
122 | --datadir=${XDIR}/share \ |
|
|
123 | ${DRIVER_OPTIONS} \ |
| 108 | ${CONFIGURE_OPTIONS} |
124 | ${CONFIGURE_OPTIONS} |
| 109 | fi |
125 | fi |
|
|
126 | } |
|
|
127 | |
|
|
128 | x-modular_src_make() { |
| 110 | emake || die "emake failed" |
129 | emake || die "emake failed" |
|
|
130 | } |
|
|
131 | |
|
|
132 | x-modular_src_compile() { |
|
|
133 | x-modular_src_configure |
|
|
134 | x-modular_src_make |
| 111 | } |
135 | } |
| 112 | |
136 | |
| 113 | x-modular_src_install() { |
137 | x-modular_src_install() { |
| 114 | # Install everything to ${XDIR} |
138 | # Install everything to ${XDIR} |
| 115 | make \ |
139 | make \ |
| … | |
… | |
| 117 | install |
141 | install |
| 118 | # Shouldn't be necessary in XDIR=/usr |
142 | # Shouldn't be necessary in XDIR=/usr |
| 119 | # einstall forces datadir, so we need to re-force it |
143 | # einstall forces datadir, so we need to re-force it |
| 120 | # datadir=${XDIR}/share \ |
144 | # datadir=${XDIR}/share \ |
| 121 | # mandir=${XDIR}/share/man \ |
145 | # mandir=${XDIR}/share/man \ |
|
|
146 | |
|
|
147 | # Don't install libtool archives for server modules |
|
|
148 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
|
|
149 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
|
|
150 | | xargs rm -f |
|
|
151 | fi |
|
|
152 | } |
|
|
153 | |
|
|
154 | x-modular_pkg_preinst() { |
|
|
155 | if [[ -n "${FONT}" ]]; then |
|
|
156 | discover_font_dirs |
|
|
157 | fi |
| 122 | } |
158 | } |
| 123 | |
159 | |
| 124 | x-modular_pkg_postinst() { |
160 | x-modular_pkg_postinst() { |
| 125 | if [[ -n "${FONT}" ]]; then |
161 | if [[ -n "${FONT}" ]]; then |
| 126 | setup_fonts |
162 | setup_fonts |
| … | |
… | |
| 136 | |
172 | |
| 137 | create_fonts_scale |
173 | create_fonts_scale |
| 138 | create_fonts_dir |
174 | create_fonts_dir |
| 139 | fix_font_permissions |
175 | fix_font_permissions |
| 140 | create_font_cache |
176 | create_font_cache |
|
|
177 | } |
|
|
178 | |
|
|
179 | discover_font_dirs() { |
|
|
180 | pushd ${IMAGE}/usr/share/fonts |
|
|
181 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
|
|
182 | FONT_DIRS="$(echo ${FONT_DIRS} | sed -e 's:./::g')" |
|
|
183 | popd |
| 141 | } |
184 | } |
| 142 | |
185 | |
| 143 | create_fonts_scale() { |
186 | create_fonts_scale() { |
| 144 | ebegin "Creating fonts.scale files" |
187 | ebegin "Creating fonts.scale files" |
| 145 | local x |
188 | local x |