| 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.45 2006/02/15 21:33:15 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.54 2006/04/21 06:58:52 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 |
| … | |
… | |
| 91 | >=sys-devel/m4-1.4" |
91 | >=sys-devel/m4-1.4" |
| 92 | fi |
92 | fi |
| 93 | |
93 | |
| 94 | # If we're a font package, but not the font.alias one |
94 | # If we're a font package, but not the font.alias one |
| 95 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
95 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
96 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
| 96 | && [[ "${PN}" != "font-alias" ]] \ |
97 | && [[ "${PN}" != "font-alias" ]] \ |
| 97 | && [[ "${PN}" != "font-util" ]]; then |
98 | && [[ "${PN}" != "font-util" ]]; then |
| 98 | # Activate font code in the rest of the eclass |
99 | # Activate font code in the rest of the eclass |
| 99 | FONT="yes" |
100 | FONT="yes" |
| 100 | |
101 | |
| … | |
… | |
| 151 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
152 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
| 152 | ; then |
153 | ; then |
| 153 | DEBUGGABLE="yes" |
154 | DEBUGGABLE="yes" |
| 154 | IUSE="${IUSE} debug" |
155 | IUSE="${IUSE} debug" |
| 155 | if use debug; then |
156 | if use debug; then |
|
|
157 | if ! has splitdebug ${FEATURES}; then |
| 156 | RESTRICT="${RESTRICT} nostrip" |
158 | RESTRICT="${RESTRICT} nostrip" |
|
|
159 | fi |
| 157 | fi |
160 | fi |
| 158 | fi |
161 | fi |
| 159 | |
162 | |
| 160 | DEPEND="${DEPEND} |
163 | DEPEND="${DEPEND} |
| 161 | >=dev-util/pkgconfig-0.18" |
164 | >=dev-util/pkgconfig-0.18" |
| … | |
… | |
| 170 | !<=x11-base/xorg-x11-6.9 |
173 | !<=x11-base/xorg-x11-6.9 |
| 171 | >=sys-apps/man-1.6b-r2" |
174 | >=sys-apps/man-1.6b-r2" |
| 172 | # Provides virtual/x11 for temporary use until packages are ported |
175 | # Provides virtual/x11 for temporary use until packages are ported |
| 173 | # x11-base/x11-env" |
176 | # x11-base/x11-env" |
| 174 | |
177 | |
|
|
178 | x-modular_specs_check() { |
|
|
179 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
180 | if gcc-specs-now; then |
|
|
181 | msg="${PN} does not work with hardened gcc specs. Switch to vanilla gcc specs to emerge ${PN}." |
|
|
182 | eerror "$msg" |
|
|
183 | die "$msg" |
|
|
184 | fi |
|
|
185 | fi |
|
|
186 | } |
|
|
187 | |
| 175 | x-modular_unpack_source() { |
188 | x-modular_unpack_source() { |
|
|
189 | # (#120057) Enabling DRI in drivers requires that the server was built with |
|
|
190 | # support for it |
|
|
191 | if [[ -n "${DRIVER}" ]]; then |
|
|
192 | if has dri ${IUSE} && use dri; then |
|
|
193 | einfo "Checking for direct rendering capabilities ..." |
|
|
194 | if ! built_with_use x11-base/xorg-server dri; then |
|
|
195 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
196 | fi |
|
|
197 | fi |
|
|
198 | fi |
|
|
199 | |
| 176 | unpack ${A} |
200 | unpack ${A} |
| 177 | cd ${S} |
201 | cd ${S} |
| 178 | |
202 | |
| 179 | if [[ -n ${FONT_OPTIONS} ]]; then |
203 | if [[ -n ${FONT_OPTIONS} ]]; then |
| 180 | einfo "Detected font directory: ${FONT_DIR}" |
204 | einfo "Detected font directory: ${FONT_DIR}" |
| … | |
… | |
| 216 | if [[ "${SNAPSHOT}" = "yes" ]] |
240 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 217 | then |
241 | then |
| 218 | # If possible, generate configure if it doesn't exist |
242 | # If possible, generate configure if it doesn't exist |
| 219 | if [ -f "${S}/configure.ac" ] |
243 | if [ -f "${S}/configure.ac" ] |
| 220 | then |
244 | then |
| 221 | einfo "Running autoreconf..." |
245 | eautoreconf |
| 222 | autoreconf -v --force --install |
|
|
| 223 | fi |
|
|
| 224 | fi |
246 | fi |
|
|
247 | fi |
| 225 | |
248 | |
|
|
249 | # Joshua Baergen - October 23, 2005 |
|
|
250 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
251 | elibtoolize |
| 226 | } |
252 | } |
| 227 | |
253 | |
| 228 | x-modular_src_unpack() { |
254 | x-modular_src_unpack() { |
| 229 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
255 | x-modular_specs_check |
| 230 | if gcc-specs-now; then |
|
|
| 231 | msg="Do not emerge ${PN} without vanilla gcc!" |
|
|
| 232 | eerror "$msg" |
|
|
| 233 | die "$msg" |
|
|
| 234 | fi |
|
|
| 235 | fi |
|
|
| 236 | |
|
|
| 237 | x-modular_unpack_source |
256 | x-modular_unpack_source |
| 238 | x-modular_patch_source |
257 | x-modular_patch_source |
| 239 | x-modular_reconf_source |
258 | x-modular_reconf_source |
| 240 | |
|
|
| 241 | # Joshua Baergen - October 23, 2005 |
|
|
| 242 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
| 243 | elibtoolize |
|
|
| 244 | } |
259 | } |
| 245 | |
260 | |
| 246 | x-modular_font_configure() { |
261 | x-modular_font_configure() { |
| 247 | if [[ -n "${FONT}" ]]; then |
262 | if [[ -n "${FONT}" ]]; then |
| 248 | # Might be worth adding an option to configure your desired font |
263 | # Might be worth adding an option to configure your desired font |
| … | |
… | |
| 310 | # Shouldn't be necessary in XDIR=/usr |
325 | # Shouldn't be necessary in XDIR=/usr |
| 311 | # einstall forces datadir, so we need to re-force it |
326 | # einstall forces datadir, so we need to re-force it |
| 312 | # datadir=${XDIR}/share \ |
327 | # datadir=${XDIR}/share \ |
| 313 | # mandir=${XDIR}/share/man \ |
328 | # mandir=${XDIR}/share/man \ |
| 314 | |
329 | |
|
|
330 | # Make sure docs get compressed |
|
|
331 | prepalldocs |
|
|
332 | |
| 315 | # Don't install libtool archives for server modules |
333 | # Don't install libtool archives for server modules |
| 316 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
334 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
| 317 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
335 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
| 318 | | xargs rm -f |
336 | | xargs rm -f |
|
|
337 | fi |
|
|
338 | |
|
|
339 | # Don't install overlapping fonts.* files |
|
|
340 | # Generate them instead when possible |
|
|
341 | if [[ -n "${FONT}" ]]; then |
|
|
342 | remove_font_metadata |
| 319 | fi |
343 | fi |
| 320 | } |
344 | } |
| 321 | |
345 | |
| 322 | x-modular_pkg_preinst() { |
346 | x-modular_pkg_preinst() { |
| 323 | if [[ -n "${FONT}" ]]; then |
347 | if [[ -n "${FONT}" ]]; then |
| … | |
… | |
| 381 | |
405 | |
| 382 | create_fonts_scale |
406 | create_fonts_scale |
| 383 | create_fonts_dir |
407 | create_fonts_dir |
| 384 | fix_font_permissions |
408 | fix_font_permissions |
| 385 | create_font_cache |
409 | create_font_cache |
|
|
410 | } |
|
|
411 | |
|
|
412 | remove_font_metadata() { |
|
|
413 | local DIR |
|
|
414 | for DIR in ${FONT_DIR}; do |
|
|
415 | if [[ "${DIR}" != "Speedo" ]] && \ |
|
|
416 | [[ "${DIR}" != "CID" ]] ; then |
|
|
417 | # Delete font metadata files |
|
|
418 | # fonts.scale, fonts.dir, fonts.cache-1 |
|
|
419 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
|
|
420 | fi |
|
|
421 | done |
| 386 | } |
422 | } |
| 387 | |
423 | |
| 388 | discover_font_dirs() { |
424 | discover_font_dirs() { |
| 389 | pushd ${IMAGE}/usr/share/fonts |
425 | pushd ${IMAGE}/usr/share/fonts |
| 390 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
426 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |