| 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.25 2005/12/07 11:19:47 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.31 2005/12/12 01:43:28 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 | # |
|
|
| 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. |
|
|
| 12 | |
9 | |
| 13 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
10 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
| 14 | |
11 | |
| 15 | inherit eutils libtool |
12 | inherit eutils libtool toolchain-funcs |
| 16 | |
13 | |
| 17 | # Directory prefix to use for everything |
14 | # Directory prefix to use for everything |
| 18 | XDIR="/usr" |
15 | XDIR="/usr" |
|
|
16 | |
|
|
17 | # Set up default patchset version(s) if necessary |
|
|
18 | # x11-driver-patches |
|
|
19 | if [[ -z "${XDPVER}" ]]; then |
|
|
20 | XDPVER="1" |
|
|
21 | fi |
| 19 | |
22 | |
| 20 | IUSE="" |
23 | IUSE="" |
| 21 | HOMEPAGE="http://xorg.freedesktop.org/" |
24 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 22 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
25 | 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 |
26 | 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" |
28 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
| 26 | LICENSE="X11" |
29 | LICENSE="X11" |
| 27 | SLOT="0" |
30 | SLOT="0" |
| 28 | |
31 | |
| 29 | # Set up shared dependencies |
32 | # Set up shared dependencies |
| 30 | if [ -n "${SNAPSHOT}" ]; then |
33 | if [[ -n "${SNAPSHOT}" ]]; then |
| 31 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
34 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 32 | DEPEND="${DEPEND} |
35 | DEPEND="${DEPEND} |
| 33 | >=sys-devel/autoconf-2.57 |
36 | >=sys-devel/autoconf-2.57 |
| 34 | >=sys-devel/automake-1.7 |
37 | >=sys-devel/automake-1.7 |
| 35 | >=sys-devel/libtool-1.5 |
38 | >=sys-devel/libtool-1.5 |
| … | |
… | |
| 43 | # Activate font code in the rest of the eclass |
46 | # Activate font code in the rest of the eclass |
| 44 | FONT="yes" |
47 | FONT="yes" |
| 45 | |
48 | |
| 46 | RDEPEND="${RDEPEND} |
49 | RDEPEND="${RDEPEND} |
| 47 | media-fonts/encodings" |
50 | media-fonts/encodings" |
|
|
51 | DEPEND="${DEPEND} |
|
|
52 | x11-apps/mkfontscale |
|
|
53 | x11-apps/mkfontdir" |
| 48 | PDEPEND="${PDEPEND} |
54 | PDEPEND="${PDEPEND} |
| 49 | media-fonts/font-alias" |
55 | media-fonts/font-alias" |
| 50 | |
56 | |
| 51 | # Starting with 7.0RC3, we can specify the font directory |
57 | # Starting with 7.0RC3, we can specify the font directory |
| 52 | # But oddly, we can't do the same for encodings or font-alias |
58 | # But oddly, we can't do the same for encodings or font-alias |
| … | |
… | |
| 75 | |
81 | |
| 76 | # If we're a driver package |
82 | # If we're a driver package |
| 77 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
83 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 78 | # Don't build static driver modules |
84 | # Don't build static driver modules |
| 79 | DRIVER_OPTIONS="--disable-static" |
85 | DRIVER_OPTIONS="--disable-static" |
|
|
86 | |
|
|
87 | # Enable driver code in the rest of the eclass |
|
|
88 | DRIVER="yes" |
|
|
89 | |
|
|
90 | # Add driver patchset to SRC_URI |
|
|
91 | SRC_URI="${SRC_URI} |
|
|
92 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
| 80 | fi |
93 | fi |
| 81 | |
94 | |
| 82 | DEPEND="${DEPEND} |
95 | DEPEND="${DEPEND} |
| 83 | >=dev-util/pkgconfig-0.18 |
96 | >=dev-util/pkgconfig-0.18 |
| 84 | >=x11-misc/util-macros-0.99.2" |
97 | >=x11-misc/util-macros-0.99.2" |
| … | |
… | |
| 92 | |
105 | |
| 93 | x-modular_unpack_source() { |
106 | x-modular_unpack_source() { |
| 94 | unpack ${A} |
107 | unpack ${A} |
| 95 | cd ${S} |
108 | cd ${S} |
| 96 | |
109 | |
| 97 | # Joshua Baergen - October 23, 2005 |
|
|
| 98 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
| 99 | elibtoolize |
|
|
| 100 | |
|
|
| 101 | if [[ -n ${FONT_OPTIONS} ]]; then |
110 | if [[ -n ${FONT_OPTIONS} ]]; then |
| 102 | einfo "Detected font directory: ${FONT_DIR}" |
111 | einfo "Detected font directory: ${FONT_DIR}" |
| 103 | fi |
112 | fi |
| 104 | } |
113 | } |
| 105 | |
114 | |
| 106 | x-modular_patch_source() { |
115 | x-modular_patch_source() { |
| 107 | # Use standardized names and locations with bulk patching |
116 | # Use standardized names and locations with bulk patching |
| 108 | # Patch directory is ${WORKDIR}/patch |
117 | # Patch directory is ${WORKDIR}/patch |
| 109 | # See epatch() in eutils.eclass for more documentation |
118 | # See epatch() in eutils.eclass for more documentation |
| 110 | if [ -z "${EPATCH_SUFFIX}" ] ; then |
119 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
| 111 | EPATCH_SUFFIX="patch" |
120 | EPATCH_SUFFIX="patch" |
| 112 | fi |
121 | fi |
| 113 | |
122 | |
|
|
123 | # If this is a driver package we need to fix man page install location. |
|
|
124 | # Running autoreconf will use the patched util-macros to make the |
|
|
125 | # change for us, so we only need to patch if it is not going to run. |
|
|
126 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]; then |
|
|
127 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
128 | fi |
|
|
129 | |
| 114 | # For specific list of patches |
130 | # For specific list of patches |
| 115 | if [ -n "${PATCHES}" ] ; then |
131 | if [[ -n "${PATCHES}" ]] ; then |
| 116 | for PATCH in ${PATCHES} |
132 | for PATCH in ${PATCHES} |
| 117 | do |
133 | do |
| 118 | epatch ${PATCH} |
134 | epatch ${PATCH} |
| 119 | done |
135 | done |
| 120 | # For non-default directory bulk patching |
136 | # For non-default directory bulk patching |
| 121 | elif [ -n "${PATCH_LOC}" ] ; then |
137 | elif [[ -n "${PATCH_LOC}" ]] ; then |
| 122 | epatch ${PATCH_LOC} |
138 | epatch ${PATCH_LOC} |
| 123 | # For standard bulk patching |
139 | # For standard bulk patching |
| 124 | elif [ -d "${EPATCH_SOURCE}" ] ; then |
140 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
| 125 | epatch |
141 | epatch |
| 126 | fi |
142 | fi |
| 127 | } |
143 | } |
| 128 | |
144 | |
| 129 | x-modular_reconf_source() { |
145 | x-modular_reconf_source() { |
| 130 | # Run autoreconf for CVS snapshots only |
146 | # Run autoreconf for CVS snapshots only |
| 131 | if [ "${SNAPSHOT}" = "yes" ] |
147 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 132 | then |
148 | then |
| 133 | # If possible, generate configure if it doesn't exist |
149 | # If possible, generate configure if it doesn't exist |
| 134 | if [ -f "${S}/configure.ac" ] |
150 | if [ -f "${S}/configure.ac" ] |
| 135 | then |
151 | then |
| 136 | einfo "Running autoreconf..." |
152 | einfo "Running autoreconf..." |
| … | |
… | |
| 139 | fi |
155 | fi |
| 140 | |
156 | |
| 141 | } |
157 | } |
| 142 | |
158 | |
| 143 | x-modular_src_unpack() { |
159 | x-modular_src_unpack() { |
|
|
160 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
161 | if gcc-specs-now; then |
|
|
162 | msg="Do not emerge ${PN} without vanilla gcc!" |
|
|
163 | eerror "$msg" |
|
|
164 | die "$msg" |
|
|
165 | fi |
|
|
166 | fi |
|
|
167 | |
| 144 | x-modular_unpack_source |
168 | x-modular_unpack_source |
| 145 | x-modular_patch_source |
169 | x-modular_patch_source |
| 146 | x-modular_reconf_source |
170 | x-modular_reconf_source |
|
|
171 | |
|
|
172 | # Joshua Baergen - October 23, 2005 |
|
|
173 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
174 | elibtoolize |
| 147 | } |
175 | } |
| 148 | |
176 | |
| 149 | x-modular_font_configure() { |
177 | x-modular_font_configure() { |
| 150 | if [[ -n "${FONT}" ]]; then |
178 | if [[ -n "${FONT}" ]]; then |
| 151 | # Might be worth adding an option to configure your desired font |
179 | # Might be worth adding an option to configure your desired font |
| … | |
… | |
| 175 | |
203 | |
| 176 | x-modular_src_configure() { |
204 | x-modular_src_configure() { |
| 177 | x-modular_font_configure |
205 | x-modular_font_configure |
| 178 | |
206 | |
| 179 | # If prefix isn't set here, .pc files cause problems |
207 | # If prefix isn't set here, .pc files cause problems |
| 180 | if [ -x ./configure ]; then |
208 | if [[ -x ./configure ]]; then |
| 181 | econf --prefix=${XDIR} \ |
209 | econf --prefix=${XDIR} \ |
| 182 | --datadir=${XDIR}/share \ |
210 | --datadir=${XDIR}/share \ |
| 183 | ${FONT_OPTIONS} \ |
211 | ${FONT_OPTIONS} \ |
| 184 | ${DRIVER_OPTIONS} \ |
212 | ${DRIVER_OPTIONS} \ |
| 185 | ${CONFIGURE_OPTIONS} |
213 | ${CONFIGURE_OPTIONS} |
| … | |
… | |
| 288 | create_fonts_scale() { |
316 | create_fonts_scale() { |
| 289 | ebegin "Creating fonts.scale files" |
317 | ebegin "Creating fonts.scale files" |
| 290 | local x |
318 | local x |
| 291 | for FONT_DIR in ${FONT_DIRS}; do |
319 | for FONT_DIR in ${FONT_DIRS}; do |
| 292 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
320 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
| 293 | [ -z "$(ls ${x}/)" ] && continue |
321 | [[ -z "$(ls ${x}/)" ]] && continue |
| 294 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
322 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 295 | |
323 | |
| 296 | # Only generate .scale files if truetype, opentype or type1 |
324 | # Only generate .scale files if truetype, opentype or type1 |
| 297 | # fonts are present ... |
325 | # fonts are present ... |
| 298 | |
326 | |
| 299 | # First truetype (ttf,ttc) |
327 | # First truetype (ttf,ttc) |
| 300 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
328 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
| 301 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
329 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
| 302 | # <spyderous@gentoo.org> 2 August 2004 |
330 | # <spyderous@gentoo.org> 2 August 2004 |
| 303 | if [ "${x/encodings}" = "${x}" -a \ |
331 | if [[ "${x/encodings}" = "${x}" ]] \ |
| 304 | -n "$(find ${x} -iname '*.tt[cf]' -print)" ]; then |
332 | && [[ -n "$(find ${x} -iname '*.tt[cf]' -print)" ]]; then |
| 305 | if [ -x ${ROOT}/usr/bin/ttmkfdir ]; then |
333 | if [[ -x ${ROOT}/usr/bin/ttmkfdir ]]; then |
| 306 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
334 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 307 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
335 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
| 308 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
336 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
| 309 | -o ${x}/fonts.scale -d ${x} |
337 | -o ${x}/fonts.scale -d ${x} |
| 310 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
338 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
| 311 | local ttmkfdir_return=$? |
339 | local ttmkfdir_return=$? |
| 312 | else |
340 | else |
| 313 | # We didn't use ttmkfdir at all |
341 | # We didn't use ttmkfdir at all |
| 314 | local ttmkfdir_return=2 |
342 | local ttmkfdir_return=2 |
| 315 | fi |
343 | fi |
| 316 | if [ ${ttmkfdir_return} -ne 0 ]; then |
344 | if [[ ${ttmkfdir_return} -ne 0 ]]; then |
| 317 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
345 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 318 | ${ROOT}/usr/bin/mkfontscale \ |
346 | ${ROOT}/usr/bin/mkfontscale \ |
| 319 | -a /usr/share/fonts/encodings/encodings.dir \ |
347 | -a /usr/share/fonts/encodings/encodings.dir \ |
| 320 | -- ${x} |
348 | -- ${x} |
| 321 | fi |
349 | fi |
| 322 | # Next type1 and opentype (pfa,pfb,otf,otc) |
350 | # Next type1 and opentype (pfa,pfb,otf,otc) |
| 323 | elif [ "${x/encodings}" = "${x}" -a \ |
351 | elif [[ "${x/encodings}" = "${x}" ]] \ |
| 324 | -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]; then |
352 | && [[ -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]]; then |
| 325 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
353 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 326 | ${ROOT}/usr/bin/mkfontscale \ |
354 | ${ROOT}/usr/bin/mkfontscale \ |
| 327 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
355 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
| 328 | -- ${x} |
356 | -- ${x} |
| 329 | fi |
357 | fi |
| … | |
… | |
| 333 | |
361 | |
| 334 | create_fonts_dir() { |
362 | create_fonts_dir() { |
| 335 | ebegin "Generating fonts.dir files" |
363 | ebegin "Generating fonts.dir files" |
| 336 | for FONT_DIR in ${FONT_DIRS}; do |
364 | for FONT_DIR in ${FONT_DIRS}; do |
| 337 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
365 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
| 338 | [ -z "$(ls ${x}/)" ] && continue |
366 | [[ -z "$(ls ${x}/)" ]] && continue |
| 339 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
367 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 340 | |
368 | |
| 341 | if [ "${x/encodings}" = "${x}" ]; then |
369 | if [[ "${x/encodings}" = "${x}" ]]; then |
| 342 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
370 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 343 | ${ROOT}/usr/bin/mkfontdir \ |
371 | ${ROOT}/usr/bin/mkfontdir \ |
| 344 | -e ${ROOT}/usr/share/fonts/encodings \ |
372 | -e ${ROOT}/usr/share/fonts/encodings \ |
| 345 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
373 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
| 346 | -- ${x} |
374 | -- ${x} |
| … | |
… | |
| 360 | |
388 | |
| 361 | create_font_cache() { |
389 | create_font_cache() { |
| 362 | # danarmak found out that fc-cache should be run AFTER all the above |
390 | # danarmak found out that fc-cache should be run AFTER all the above |
| 363 | # stuff, as otherwise the cache is invalid, and has to be run again |
391 | # stuff, as otherwise the cache is invalid, and has to be run again |
| 364 | # as root anyway |
392 | # as root anyway |
| 365 | if [ -x ${ROOT}/usr/bin/fc-cache ]; then |
393 | if [[ -x ${ROOT}/usr/bin/fc-cache ]]; then |
| 366 | ebegin "Creating FC font cache" |
394 | ebegin "Creating FC font cache" |
| 367 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
395 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
| 368 | eend 0 |
396 | eend 0 |
| 369 | fi |
397 | fi |
| 370 | } |
398 | } |