| 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.27 2005/12/09 16:13:54 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.32 2005/12/12 01:56:08 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. |
| 9 | # |
9 | # |
| 10 | # If the ebuild installs fonts, set FONT="yes" at the top and set FONT_DIRS to |
10 | # Using this eclass: |
| 11 | # the subdirectories within /usr/share/fonts to which it installs fonts. |
11 | # |
|
|
12 | # Inherit it. If you need to run autoreconf for any reason (e.g., your patches |
|
|
13 | # apply to the autotools files rather than configure), set SNAPSHOT="yes". Set |
|
|
14 | # CONFIGURE_OPTIONS to everything you want to pass to the configure script. |
|
|
15 | # |
|
|
16 | # If you have any patches to apply, set PATCHES to their locations and epatch |
|
|
17 | # will apply them. It also handles epatch-style bulk patches, if you know how to |
|
|
18 | # use them and set the correct variables. If you don't, read eutils.eclass. |
|
|
19 | # |
|
|
20 | # If you're creating a font package and the suffix of PN is not equal to the |
|
|
21 | # subdirectory of /usr/share/fonts/ it should install into, set FONT_DIR to that |
|
|
22 | # directory or directories. |
|
|
23 | # |
|
|
24 | # Pretty much everything else should be automatic. |
| 12 | |
25 | |
| 13 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
26 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
| 14 | |
27 | |
| 15 | inherit eutils libtool toolchain-funcs |
28 | inherit eutils libtool toolchain-funcs |
| 16 | |
29 | |
| 17 | # Directory prefix to use for everything |
30 | # Directory prefix to use for everything |
| 18 | XDIR="/usr" |
31 | XDIR="/usr" |
|
|
32 | |
|
|
33 | # Set up default patchset version(s) if necessary |
|
|
34 | # x11-driver-patches |
|
|
35 | if [[ -z "${XDPVER}" ]]; then |
|
|
36 | XDPVER="1" |
|
|
37 | fi |
| 19 | |
38 | |
| 20 | IUSE="" |
39 | IUSE="" |
| 21 | HOMEPAGE="http://xorg.freedesktop.org/" |
40 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 22 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
41 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
| 23 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
42 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
| … | |
… | |
| 25 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
44 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
| 26 | LICENSE="X11" |
45 | LICENSE="X11" |
| 27 | SLOT="0" |
46 | SLOT="0" |
| 28 | |
47 | |
| 29 | # Set up shared dependencies |
48 | # Set up shared dependencies |
| 30 | if [ -n "${SNAPSHOT}" ]; then |
49 | if [[ -n "${SNAPSHOT}" ]]; then |
| 31 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
50 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 32 | DEPEND="${DEPEND} |
51 | DEPEND="${DEPEND} |
| 33 | >=sys-devel/autoconf-2.57 |
52 | >=sys-devel/autoconf-2.57 |
| 34 | >=sys-devel/automake-1.7 |
53 | >=sys-devel/automake-1.7 |
| 35 | >=sys-devel/libtool-1.5 |
54 | >=sys-devel/libtool-1.5 |
| … | |
… | |
| 43 | # Activate font code in the rest of the eclass |
62 | # Activate font code in the rest of the eclass |
| 44 | FONT="yes" |
63 | FONT="yes" |
| 45 | |
64 | |
| 46 | RDEPEND="${RDEPEND} |
65 | RDEPEND="${RDEPEND} |
| 47 | media-fonts/encodings" |
66 | media-fonts/encodings" |
|
|
67 | DEPEND="${DEPEND} |
|
|
68 | x11-apps/mkfontscale |
|
|
69 | x11-apps/mkfontdir" |
| 48 | PDEPEND="${PDEPEND} |
70 | PDEPEND="${PDEPEND} |
| 49 | media-fonts/font-alias" |
71 | media-fonts/font-alias" |
| 50 | |
72 | |
| 51 | # Starting with 7.0RC3, we can specify the font directory |
73 | # Starting with 7.0RC3, we can specify the font directory |
| 52 | # But oddly, we can't do the same for encodings or font-alias |
74 | # But oddly, we can't do the same for encodings or font-alias |
| … | |
… | |
| 75 | |
97 | |
| 76 | # If we're a driver package |
98 | # If we're a driver package |
| 77 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
99 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 78 | # Don't build static driver modules |
100 | # Don't build static driver modules |
| 79 | DRIVER_OPTIONS="--disable-static" |
101 | DRIVER_OPTIONS="--disable-static" |
|
|
102 | |
|
|
103 | # Enable driver code in the rest of the eclass |
|
|
104 | DRIVER="yes" |
|
|
105 | |
|
|
106 | # Add driver patchset to SRC_URI |
|
|
107 | SRC_URI="${SRC_URI} |
|
|
108 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
| 80 | fi |
109 | fi |
| 81 | |
110 | |
| 82 | DEPEND="${DEPEND} |
111 | DEPEND="${DEPEND} |
| 83 | >=dev-util/pkgconfig-0.18 |
112 | >=dev-util/pkgconfig-0.18 |
| 84 | >=x11-misc/util-macros-0.99.2" |
113 | >=x11-misc/util-macros-0.99.2" |
| … | |
… | |
| 101 | |
130 | |
| 102 | x-modular_patch_source() { |
131 | x-modular_patch_source() { |
| 103 | # Use standardized names and locations with bulk patching |
132 | # Use standardized names and locations with bulk patching |
| 104 | # Patch directory is ${WORKDIR}/patch |
133 | # Patch directory is ${WORKDIR}/patch |
| 105 | # See epatch() in eutils.eclass for more documentation |
134 | # See epatch() in eutils.eclass for more documentation |
| 106 | if [ -z "${EPATCH_SUFFIX}" ] ; then |
135 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
| 107 | EPATCH_SUFFIX="patch" |
136 | EPATCH_SUFFIX="patch" |
| 108 | fi |
137 | fi |
| 109 | |
138 | |
|
|
139 | # If this is a driver package we need to fix man page install location. |
|
|
140 | # Running autoreconf will use the patched util-macros to make the |
|
|
141 | # change for us, so we only need to patch if it is not going to run. |
|
|
142 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]; then |
|
|
143 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
144 | fi |
|
|
145 | |
| 110 | # For specific list of patches |
146 | # For specific list of patches |
| 111 | if [ -n "${PATCHES}" ] ; then |
147 | if [[ -n "${PATCHES}" ]] ; then |
| 112 | for PATCH in ${PATCHES} |
148 | for PATCH in ${PATCHES} |
| 113 | do |
149 | do |
| 114 | epatch ${PATCH} |
150 | epatch ${PATCH} |
| 115 | done |
151 | done |
| 116 | # For non-default directory bulk patching |
152 | # For non-default directory bulk patching |
| 117 | elif [ -n "${PATCH_LOC}" ] ; then |
153 | elif [[ -n "${PATCH_LOC}" ]] ; then |
| 118 | epatch ${PATCH_LOC} |
154 | epatch ${PATCH_LOC} |
| 119 | # For standard bulk patching |
155 | # For standard bulk patching |
| 120 | elif [ -d "${EPATCH_SOURCE}" ] ; then |
156 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
| 121 | epatch |
157 | epatch |
| 122 | fi |
158 | fi |
| 123 | } |
159 | } |
| 124 | |
160 | |
| 125 | x-modular_reconf_source() { |
161 | x-modular_reconf_source() { |
| 126 | # Run autoreconf for CVS snapshots only |
162 | # Run autoreconf for CVS snapshots only |
| 127 | if [ "${SNAPSHOT}" = "yes" ] |
163 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 128 | then |
164 | then |
| 129 | # If possible, generate configure if it doesn't exist |
165 | # If possible, generate configure if it doesn't exist |
| 130 | if [ -f "${S}/configure.ac" ] |
166 | if [ -f "${S}/configure.ac" ] |
| 131 | then |
167 | then |
| 132 | einfo "Running autoreconf..." |
168 | einfo "Running autoreconf..." |
| … | |
… | |
| 135 | fi |
171 | fi |
| 136 | |
172 | |
| 137 | } |
173 | } |
| 138 | |
174 | |
| 139 | x-modular_src_unpack() { |
175 | x-modular_src_unpack() { |
| 140 | for x in xorg-server xf86-video- xf86-input- ; do |
176 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
| 141 | if [[ ${PN:0:11} = $x ]] && gcc-specs-now; then |
177 | if gcc-specs-now; then |
| 142 | msg="Do not emerge ${PN} without vanilla gcc!" |
178 | msg="Do not emerge ${PN} without vanilla gcc!" |
| 143 | eerror "$msg" |
179 | eerror "$msg" |
| 144 | die "$msg" |
180 | die "$msg" |
| 145 | fi |
181 | fi |
| 146 | done |
182 | fi |
| 147 | |
183 | |
| 148 | x-modular_unpack_source |
184 | x-modular_unpack_source |
| 149 | x-modular_patch_source |
185 | x-modular_patch_source |
| 150 | x-modular_reconf_source |
186 | x-modular_reconf_source |
| 151 | |
187 | |
| … | |
… | |
| 183 | |
219 | |
| 184 | x-modular_src_configure() { |
220 | x-modular_src_configure() { |
| 185 | x-modular_font_configure |
221 | x-modular_font_configure |
| 186 | |
222 | |
| 187 | # If prefix isn't set here, .pc files cause problems |
223 | # If prefix isn't set here, .pc files cause problems |
| 188 | if [ -x ./configure ]; then |
224 | if [[ -x ./configure ]]; then |
| 189 | econf --prefix=${XDIR} \ |
225 | econf --prefix=${XDIR} \ |
| 190 | --datadir=${XDIR}/share \ |
226 | --datadir=${XDIR}/share \ |
| 191 | ${FONT_OPTIONS} \ |
227 | ${FONT_OPTIONS} \ |
| 192 | ${DRIVER_OPTIONS} \ |
228 | ${DRIVER_OPTIONS} \ |
| 193 | ${CONFIGURE_OPTIONS} |
229 | ${CONFIGURE_OPTIONS} |
| … | |
… | |
| 296 | create_fonts_scale() { |
332 | create_fonts_scale() { |
| 297 | ebegin "Creating fonts.scale files" |
333 | ebegin "Creating fonts.scale files" |
| 298 | local x |
334 | local x |
| 299 | for FONT_DIR in ${FONT_DIRS}; do |
335 | for FONT_DIR in ${FONT_DIRS}; do |
| 300 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
336 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
| 301 | [ -z "$(ls ${x}/)" ] && continue |
337 | [[ -z "$(ls ${x}/)" ]] && continue |
| 302 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
338 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 303 | |
339 | |
| 304 | # Only generate .scale files if truetype, opentype or type1 |
340 | # Only generate .scale files if truetype, opentype or type1 |
| 305 | # fonts are present ... |
341 | # fonts are present ... |
| 306 | |
342 | |
| 307 | # First truetype (ttf,ttc) |
343 | # First truetype (ttf,ttc) |
| 308 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
344 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
| 309 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
345 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
| 310 | # <spyderous@gentoo.org> 2 August 2004 |
346 | # <spyderous@gentoo.org> 2 August 2004 |
| 311 | if [ "${x/encodings}" = "${x}" -a \ |
347 | if [[ "${x/encodings}" = "${x}" ]] \ |
| 312 | -n "$(find ${x} -iname '*.tt[cf]' -print)" ]; then |
348 | && [[ -n "$(find ${x} -iname '*.tt[cf]' -print)" ]]; then |
| 313 | if [ -x ${ROOT}/usr/bin/ttmkfdir ]; then |
349 | if [[ -x ${ROOT}/usr/bin/ttmkfdir ]]; then |
| 314 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
350 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 315 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
351 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
| 316 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
352 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
| 317 | -o ${x}/fonts.scale -d ${x} |
353 | -o ${x}/fonts.scale -d ${x} |
| 318 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
354 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
| 319 | local ttmkfdir_return=$? |
355 | local ttmkfdir_return=$? |
| 320 | else |
356 | else |
| 321 | # We didn't use ttmkfdir at all |
357 | # We didn't use ttmkfdir at all |
| 322 | local ttmkfdir_return=2 |
358 | local ttmkfdir_return=2 |
| 323 | fi |
359 | fi |
| 324 | if [ ${ttmkfdir_return} -ne 0 ]; then |
360 | if [[ ${ttmkfdir_return} -ne 0 ]]; then |
| 325 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
361 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 326 | ${ROOT}/usr/bin/mkfontscale \ |
362 | ${ROOT}/usr/bin/mkfontscale \ |
| 327 | -a /usr/share/fonts/encodings/encodings.dir \ |
363 | -a /usr/share/fonts/encodings/encodings.dir \ |
| 328 | -- ${x} |
364 | -- ${x} |
| 329 | fi |
365 | fi |
| 330 | # Next type1 and opentype (pfa,pfb,otf,otc) |
366 | # Next type1 and opentype (pfa,pfb,otf,otc) |
| 331 | elif [ "${x/encodings}" = "${x}" -a \ |
367 | elif [[ "${x/encodings}" = "${x}" ]] \ |
| 332 | -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]; then |
368 | && [[ -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]]; then |
| 333 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
369 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 334 | ${ROOT}/usr/bin/mkfontscale \ |
370 | ${ROOT}/usr/bin/mkfontscale \ |
| 335 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
371 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
| 336 | -- ${x} |
372 | -- ${x} |
| 337 | fi |
373 | fi |
| … | |
… | |
| 341 | |
377 | |
| 342 | create_fonts_dir() { |
378 | create_fonts_dir() { |
| 343 | ebegin "Generating fonts.dir files" |
379 | ebegin "Generating fonts.dir files" |
| 344 | for FONT_DIR in ${FONT_DIRS}; do |
380 | for FONT_DIR in ${FONT_DIRS}; do |
| 345 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
381 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
| 346 | [ -z "$(ls ${x}/)" ] && continue |
382 | [[ -z "$(ls ${x}/)" ]] && continue |
| 347 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
383 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 348 | |
384 | |
| 349 | if [ "${x/encodings}" = "${x}" ]; then |
385 | if [[ "${x/encodings}" = "${x}" ]]; then |
| 350 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
386 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 351 | ${ROOT}/usr/bin/mkfontdir \ |
387 | ${ROOT}/usr/bin/mkfontdir \ |
| 352 | -e ${ROOT}/usr/share/fonts/encodings \ |
388 | -e ${ROOT}/usr/share/fonts/encodings \ |
| 353 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
389 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
| 354 | -- ${x} |
390 | -- ${x} |
| … | |
… | |
| 368 | |
404 | |
| 369 | create_font_cache() { |
405 | create_font_cache() { |
| 370 | # danarmak found out that fc-cache should be run AFTER all the above |
406 | # danarmak found out that fc-cache should be run AFTER all the above |
| 371 | # stuff, as otherwise the cache is invalid, and has to be run again |
407 | # stuff, as otherwise the cache is invalid, and has to be run again |
| 372 | # as root anyway |
408 | # as root anyway |
| 373 | if [ -x ${ROOT}/usr/bin/fc-cache ]; then |
409 | if [[ -x ${ROOT}/usr/bin/fc-cache ]]; then |
| 374 | ebegin "Creating FC font cache" |
410 | ebegin "Creating FC font cache" |
| 375 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
411 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
| 376 | eend 0 |
412 | eend 0 |
| 377 | fi |
413 | fi |
| 378 | } |
414 | } |