| 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.49 2006/03/22 20:19:24 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 | # IMPORTANT: Both SNAPSHOT and FONT_DIR must be set _before_ the inherit. |
|
|
25 | # |
|
|
26 | # Pretty much everything else should be automatic. |
| 12 | |
27 | |
| 13 | 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 |
| 14 | |
29 | |
| 15 | inherit eutils libtool toolchain-funcs |
30 | inherit eutils libtool toolchain-funcs flag-o-matic |
| 16 | |
31 | |
| 17 | # Directory prefix to use for everything |
32 | # Directory prefix to use for everything |
| 18 | XDIR="/usr" |
33 | XDIR="/usr" |
| 19 | |
34 | |
|
|
35 | # Set up default patchset version(s) if necessary |
|
|
36 | # x11-driver-patches |
|
|
37 | if [[ -z "${XDPVER}" ]]; then |
|
|
38 | XDPVER="1" |
|
|
39 | fi |
|
|
40 | |
| 20 | IUSE="" |
41 | IUSE="" |
| 21 | HOMEPAGE="http://xorg.freedesktop.org/" |
42 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 22 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
43 | |
| 23 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
44 | # Set up SRC_URI for individual modular releases |
| 24 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
45 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
|
|
46 | if [[ ${CATEGORY} = x11-apps ]]; then |
|
|
47 | SRC_URI="${SRC_URI} |
|
|
48 | ${BASE_INDIVIDUAL_URI}/app/${P}.tar.bz2" |
|
|
49 | elif [[ ${CATEGORY} = app-doc ]]; then |
|
|
50 | SRC_URI="${SRC_URI} |
|
|
51 | ${BASE_INDIVIDUAL_URI}/doc/${P}.tar.bz2" |
|
|
52 | # x11-misc contains data and util, x11-themes contains data |
|
|
53 | elif [[ ${CATEGORY} = x11-misc ]] || [[ ${CATEGORY} = x11-themes ]]; then |
|
|
54 | SRC_URI="${SRC_URI} |
|
|
55 | ${BASE_INDIVIDUAL_URI}/data/${P}.tar.bz2 |
|
|
56 | ${BASE_INDIVIDUAL_URI}/util/${P}.tar.bz2" |
|
|
57 | elif [[ ${CATEGORY} = x11-drivers ]]; then |
|
|
58 | SRC_URI="${SRC_URI} |
|
|
59 | ${BASE_INDIVIDUAL_URI}/driver/${P}.tar.bz2" |
|
|
60 | elif [[ ${CATEGORY} = media-fonts ]]; then |
|
|
61 | SRC_URI="${SRC_URI} |
|
|
62 | ${BASE_INDIVIDUAL_URI}/font/${P}.tar.bz2" |
|
|
63 | elif [[ ${CATEGORY} = x11-libs ]]; then |
|
|
64 | SRC_URI="${SRC_URI} |
|
|
65 | ${BASE_INDIVIDUAL_URI}/lib/${P}.tar.bz2" |
|
|
66 | elif [[ ${CATEGORY} = x11-proto ]]; then |
|
|
67 | SRC_URI="${SRC_URI} |
|
|
68 | ${BASE_INDIVIDUAL_URI}/proto/${P}.tar.bz2" |
|
|
69 | elif [[ ${CATEGORY} = x11-base ]]; then |
|
|
70 | SRC_URI="${SRC_URI} |
|
|
71 | ${BASE_INDIVIDUAL_URI}/xserver/${P}.tar.bz2" |
|
|
72 | fi |
|
|
73 | |
|
|
74 | # SRC_URI for full releases |
|
|
75 | SRC_URI="${SRC_URI} |
| 25 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
76 | http://xorg.freedesktop.org/releases/X11R7.0/src/everything/${P}.tar.bz2" |
| 26 | LICENSE="X11" |
77 | |
| 27 | SLOT="0" |
78 | SLOT="0" |
| 28 | |
79 | |
|
|
80 | # Set the license for the package. This can be overridden by setting |
|
|
81 | # LICENSE after the inherit. |
|
|
82 | LICENSE=${PN} |
|
|
83 | |
| 29 | # Set up shared dependencies |
84 | # Set up shared dependencies |
| 30 | if [ -n "${SNAPSHOT}" ]; then |
85 | if [[ -n "${SNAPSHOT}" ]]; then |
| 31 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
86 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 32 | DEPEND="${DEPEND} |
87 | DEPEND="${DEPEND} |
| 33 | >=sys-devel/autoconf-2.57 |
88 | >=sys-devel/autoconf-2.57 |
| 34 | >=sys-devel/automake-1.7 |
89 | >=sys-devel/automake-1.7 |
| 35 | >=sys-devel/libtool-1.5 |
90 | >=sys-devel/libtool-1.5 |
| 36 | >=sys-devel/m4-1.4" |
91 | >=sys-devel/m4-1.4" |
| 37 | fi |
92 | fi |
| 38 | |
93 | |
| 39 | # 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 |
| 40 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
95 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
96 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
| 41 | && [[ "${PN}" != "font-alias" ]] \ |
97 | && [[ "${PN}" != "font-alias" ]] \ |
| 42 | && [[ "${PN}" != "font-util" ]]; then |
98 | && [[ "${PN}" != "font-util" ]]; then |
| 43 | # Activate font code in the rest of the eclass |
99 | # Activate font code in the rest of the eclass |
| 44 | FONT="yes" |
100 | FONT="yes" |
| 45 | |
101 | |
| 46 | RDEPEND="${RDEPEND} |
102 | RDEPEND="${RDEPEND} |
| 47 | media-fonts/encodings" |
103 | media-fonts/encodings |
|
|
104 | x11-apps/mkfontscale |
|
|
105 | x11-apps/mkfontdir" |
| 48 | PDEPEND="${PDEPEND} |
106 | PDEPEND="${PDEPEND} |
| 49 | media-fonts/font-alias" |
107 | media-fonts/font-alias" |
| 50 | |
108 | |
| 51 | # Starting with 7.0RC3, we can specify the font directory |
109 | # Starting with 7.0RC3, we can specify the font directory |
| 52 | # But oddly, we can't do the same for encodings or font-alias |
110 | # But oddly, we can't do the same for encodings or font-alias |
| … | |
… | |
| 73 | fi |
131 | fi |
| 74 | fi |
132 | fi |
| 75 | |
133 | |
| 76 | # If we're a driver package |
134 | # If we're a driver package |
| 77 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
135 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 78 | # Don't build static driver modules |
136 | # Enable driver code in the rest of the eclass |
| 79 | DRIVER_OPTIONS="--disable-static" |
137 | DRIVER="yes" |
|
|
138 | |
|
|
139 | # Add driver patchset to SRC_URI |
|
|
140 | SRC_URI="${SRC_URI} |
|
|
141 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
142 | fi |
|
|
143 | |
|
|
144 | # Debugging -- ignore packages that can't be built with debugging |
|
|
145 | if [[ -z "${FONT}" ]] \ |
|
|
146 | || [[ "${PN/app-doc}" != "${PN}" ]] \ |
|
|
147 | || [[ "${PN/x11-proto}" != "${PN}" ]] \ |
|
|
148 | || [[ "${PN/util-macros}" != "${PN}" ]] \ |
|
|
149 | || [[ "${PN/xbitmaps}" != "${PN}" ]] \ |
|
|
150 | || [[ "${PN/xkbdata}" != "${PN}" ]] \ |
|
|
151 | || [[ "${PN/xorg-cf-files}" != "${PN}" ]] \ |
|
|
152 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
|
|
153 | ; then |
|
|
154 | DEBUGGABLE="yes" |
|
|
155 | IUSE="${IUSE} debug" |
|
|
156 | if use debug; then |
|
|
157 | if ! has splitdebug ${FEATURES}; then |
|
|
158 | RESTRICT="${RESTRICT} nostrip" |
|
|
159 | fi |
|
|
160 | fi |
| 80 | fi |
161 | fi |
| 81 | |
162 | |
| 82 | DEPEND="${DEPEND} |
163 | DEPEND="${DEPEND} |
| 83 | >=dev-util/pkgconfig-0.18 |
164 | >=dev-util/pkgconfig-0.18" |
|
|
165 | |
|
|
166 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
|
|
167 | DEPEND="${DEPEND} |
| 84 | >=x11-misc/util-macros-0.99.2" |
168 | >=x11-misc/util-macros-0.99.2" |
|
|
169 | fi |
| 85 | |
170 | |
| 86 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
171 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
| 87 | RDEPEND="${RDEPEND} |
172 | RDEPEND="${RDEPEND} |
| 88 | !<=x11-base/xorg-x11-6.9 |
173 | !<=x11-base/xorg-x11-6.9 |
| 89 | >=sys-apps/man-1.6b-r2" |
174 | >=sys-apps/man-1.6b-r2" |
| … | |
… | |
| 101 | |
186 | |
| 102 | x-modular_patch_source() { |
187 | x-modular_patch_source() { |
| 103 | # Use standardized names and locations with bulk patching |
188 | # Use standardized names and locations with bulk patching |
| 104 | # Patch directory is ${WORKDIR}/patch |
189 | # Patch directory is ${WORKDIR}/patch |
| 105 | # See epatch() in eutils.eclass for more documentation |
190 | # See epatch() in eutils.eclass for more documentation |
| 106 | if [ -z "${EPATCH_SUFFIX}" ] ; then |
191 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
| 107 | EPATCH_SUFFIX="patch" |
192 | EPATCH_SUFFIX="patch" |
| 108 | fi |
193 | fi |
| 109 | |
194 | |
|
|
195 | # If this is a driver package we need to fix man page install location. |
|
|
196 | # Running autoreconf will use the patched util-macros to make the |
|
|
197 | # change for us, so we only need to patch if it is not going to run. |
|
|
198 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]; then |
|
|
199 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
200 | fi |
|
|
201 | |
| 110 | # For specific list of patches |
202 | # For specific list of patches |
| 111 | if [ -n "${PATCHES}" ] ; then |
203 | if [[ -n "${PATCHES}" ]] ; then |
| 112 | for PATCH in ${PATCHES} |
204 | for PATCH in ${PATCHES} |
| 113 | do |
205 | do |
| 114 | epatch ${PATCH} |
206 | epatch ${PATCH} |
| 115 | done |
207 | done |
| 116 | # For non-default directory bulk patching |
208 | # For non-default directory bulk patching |
| 117 | elif [ -n "${PATCH_LOC}" ] ; then |
209 | elif [[ -n "${PATCH_LOC}" ]] ; then |
| 118 | epatch ${PATCH_LOC} |
210 | epatch ${PATCH_LOC} |
| 119 | # For standard bulk patching |
211 | # For standard bulk patching |
| 120 | elif [ -d "${EPATCH_SOURCE}" ] ; then |
212 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
| 121 | epatch |
213 | epatch |
| 122 | fi |
214 | fi |
| 123 | } |
215 | } |
| 124 | |
216 | |
| 125 | x-modular_reconf_source() { |
217 | x-modular_reconf_source() { |
| 126 | # Run autoreconf for CVS snapshots only |
218 | # Run autoreconf for CVS snapshots only |
| 127 | if [ "${SNAPSHOT}" = "yes" ] |
219 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 128 | then |
220 | then |
| 129 | # If possible, generate configure if it doesn't exist |
221 | # If possible, generate configure if it doesn't exist |
| 130 | if [ -f "${S}/configure.ac" ] |
222 | if [ -f "${S}/configure.ac" ] |
| 131 | then |
223 | then |
| 132 | einfo "Running autoreconf..." |
224 | einfo "Running autoreconf..." |
| … | |
… | |
| 135 | fi |
227 | fi |
| 136 | |
228 | |
| 137 | } |
229 | } |
| 138 | |
230 | |
| 139 | x-modular_src_unpack() { |
231 | x-modular_src_unpack() { |
| 140 | for x in xorg-server xf86-video- xf86-input- ; do |
232 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
| 141 | if [[ ${PN:0:11} = $x ]] && gcc-specs-now; then |
233 | if gcc-specs-now; then |
| 142 | msg="Do not emerge ${PN} without vanilla gcc!" |
234 | msg="Do not emerge ${PN} without vanilla gcc specs!" |
| 143 | eerror "$msg" |
235 | eerror "$msg" |
| 144 | die "$msg" |
236 | die "$msg" |
| 145 | fi |
237 | fi |
| 146 | done |
238 | fi |
| 147 | |
239 | |
| 148 | x-modular_unpack_source |
240 | x-modular_unpack_source |
| 149 | x-modular_patch_source |
241 | x-modular_patch_source |
| 150 | x-modular_reconf_source |
242 | x-modular_reconf_source |
| 151 | |
243 | |
| … | |
… | |
| 179 | --disable-koi8-r" |
271 | --disable-koi8-r" |
| 180 | fi |
272 | fi |
| 181 | fi |
273 | fi |
| 182 | } |
274 | } |
| 183 | |
275 | |
|
|
276 | x-modular_debug_setup() { |
|
|
277 | if [[ -n "${DEBUGGABLE}" ]]; then |
|
|
278 | if use debug; then |
|
|
279 | strip-flags |
|
|
280 | append-flags -g |
|
|
281 | fi |
|
|
282 | fi |
|
|
283 | } |
|
|
284 | |
| 184 | x-modular_src_configure() { |
285 | x-modular_src_configure() { |
| 185 | x-modular_font_configure |
286 | x-modular_font_configure |
|
|
287 | x-modular_debug_setup |
| 186 | |
288 | |
| 187 | # If prefix isn't set here, .pc files cause problems |
289 | # If prefix isn't set here, .pc files cause problems |
| 188 | if [ -x ./configure ]; then |
290 | if [[ -x ./configure ]]; then |
| 189 | econf --prefix=${XDIR} \ |
291 | econf --prefix=${XDIR} \ |
| 190 | --datadir=${XDIR}/share \ |
292 | --datadir=${XDIR}/share \ |
| 191 | ${FONT_OPTIONS} \ |
293 | ${FONT_OPTIONS} \ |
| 192 | ${DRIVER_OPTIONS} \ |
294 | ${DRIVER_OPTIONS} \ |
| 193 | ${CONFIGURE_OPTIONS} |
295 | ${CONFIGURE_OPTIONS} |
| … | |
… | |
| 215 | |
317 | |
| 216 | # Don't install libtool archives for server modules |
318 | # Don't install libtool archives for server modules |
| 217 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
319 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
| 218 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
320 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
| 219 | | xargs rm -f |
321 | | xargs rm -f |
|
|
322 | fi |
|
|
323 | |
|
|
324 | # Don't install overlapping fonts.* files |
|
|
325 | # Generate them instead when possible |
|
|
326 | if [[ -n "${FONT}" ]]; then |
|
|
327 | remove_font_metadata |
| 220 | fi |
328 | fi |
| 221 | } |
329 | } |
| 222 | |
330 | |
| 223 | x-modular_pkg_preinst() { |
331 | x-modular_pkg_preinst() { |
| 224 | if [[ -n "${FONT}" ]]; then |
332 | if [[ -n "${FONT}" ]]; then |
| … | |
… | |
| 284 | create_fonts_dir |
392 | create_fonts_dir |
| 285 | fix_font_permissions |
393 | fix_font_permissions |
| 286 | create_font_cache |
394 | create_font_cache |
| 287 | } |
395 | } |
| 288 | |
396 | |
|
|
397 | remove_font_metadata() { |
|
|
398 | local DIR |
|
|
399 | for DIR in ${FONT_DIR}; do |
|
|
400 | if [[ "${DIR}" != "Speedo" ]] && \ |
|
|
401 | [[ "${DIR}" != "CID" ]] ; then |
|
|
402 | # Delete font metadata files |
|
|
403 | # fonts.scale, fonts.dir, fonts.cache-1 |
|
|
404 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
|
|
405 | fi |
|
|
406 | done |
|
|
407 | } |
|
|
408 | |
| 289 | discover_font_dirs() { |
409 | discover_font_dirs() { |
| 290 | pushd ${IMAGE}/usr/share/fonts |
410 | pushd ${IMAGE}/usr/share/fonts |
| 291 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
411 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
| 292 | FONT_DIRS="$(echo ${FONT_DIRS} | sed -e 's:./::g')" |
412 | FONT_DIRS="$(echo ${FONT_DIRS} | sed -e 's:./::g')" |
| 293 | popd |
413 | popd |
| … | |
… | |
| 296 | create_fonts_scale() { |
416 | create_fonts_scale() { |
| 297 | ebegin "Creating fonts.scale files" |
417 | ebegin "Creating fonts.scale files" |
| 298 | local x |
418 | local x |
| 299 | for FONT_DIR in ${FONT_DIRS}; do |
419 | for FONT_DIR in ${FONT_DIRS}; do |
| 300 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
420 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
| 301 | [ -z "$(ls ${x}/)" ] && continue |
421 | [[ -z "$(ls ${x}/)" ]] && continue |
| 302 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
422 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 303 | |
423 | |
| 304 | # Only generate .scale files if truetype, opentype or type1 |
424 | # Only generate .scale files if truetype, opentype or type1 |
| 305 | # fonts are present ... |
425 | # fonts are present ... |
| 306 | |
426 | |
| 307 | # First truetype (ttf,ttc) |
427 | # First truetype (ttf,ttc) |
| 308 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
428 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
| 309 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
429 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
| 310 | # <spyderous@gentoo.org> 2 August 2004 |
430 | # <spyderous@gentoo.org> 2 August 2004 |
| 311 | if [ "${x/encodings}" = "${x}" -a \ |
431 | if [[ "${x/encodings}" = "${x}" ]] \ |
| 312 | -n "$(find ${x} -iname '*.tt[cf]' -print)" ]; then |
432 | && [[ -n "$(find ${x} -iname '*.tt[cf]' -print)" ]]; then |
| 313 | if [ -x ${ROOT}/usr/bin/ttmkfdir ]; then |
433 | if [[ -x ${ROOT}/usr/bin/ttmkfdir ]]; then |
| 314 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
434 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 315 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
435 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
| 316 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
436 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
| 317 | -o ${x}/fonts.scale -d ${x} |
437 | -o ${x}/fonts.scale -d ${x} |
| 318 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
438 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
| 319 | local ttmkfdir_return=$? |
439 | local ttmkfdir_return=$? |
| 320 | else |
440 | else |
| 321 | # We didn't use ttmkfdir at all |
441 | # We didn't use ttmkfdir at all |
| 322 | local ttmkfdir_return=2 |
442 | local ttmkfdir_return=2 |
| 323 | fi |
443 | fi |
| 324 | if [ ${ttmkfdir_return} -ne 0 ]; then |
444 | if [[ ${ttmkfdir_return} -ne 0 ]]; then |
| 325 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
445 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 326 | ${ROOT}/usr/bin/mkfontscale \ |
446 | ${ROOT}/usr/bin/mkfontscale \ |
| 327 | -a /usr/share/fonts/encodings/encodings.dir \ |
447 | -a /usr/share/fonts/encodings/encodings.dir \ |
| 328 | -- ${x} |
448 | -- ${x} |
| 329 | fi |
449 | fi |
| 330 | # Next type1 and opentype (pfa,pfb,otf,otc) |
450 | # Next type1 and opentype (pfa,pfb,otf,otc) |
| 331 | elif [ "${x/encodings}" = "${x}" -a \ |
451 | elif [[ "${x/encodings}" = "${x}" ]] \ |
| 332 | -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]; then |
452 | && [[ -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]]; then |
| 333 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
453 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 334 | ${ROOT}/usr/bin/mkfontscale \ |
454 | ${ROOT}/usr/bin/mkfontscale \ |
| 335 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
455 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
| 336 | -- ${x} |
456 | -- ${x} |
| 337 | fi |
457 | fi |
| … | |
… | |
| 341 | |
461 | |
| 342 | create_fonts_dir() { |
462 | create_fonts_dir() { |
| 343 | ebegin "Generating fonts.dir files" |
463 | ebegin "Generating fonts.dir files" |
| 344 | for FONT_DIR in ${FONT_DIRS}; do |
464 | for FONT_DIR in ${FONT_DIRS}; do |
| 345 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
465 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
| 346 | [ -z "$(ls ${x}/)" ] && continue |
466 | [[ -z "$(ls ${x}/)" ]] && continue |
| 347 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
467 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 348 | |
468 | |
| 349 | if [ "${x/encodings}" = "${x}" ]; then |
469 | if [[ "${x/encodings}" = "${x}" ]]; then |
| 350 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
470 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 351 | ${ROOT}/usr/bin/mkfontdir \ |
471 | ${ROOT}/usr/bin/mkfontdir \ |
| 352 | -e ${ROOT}/usr/share/fonts/encodings \ |
472 | -e ${ROOT}/usr/share/fonts/encodings \ |
| 353 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
473 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
| 354 | -- ${x} |
474 | -- ${x} |
| … | |
… | |
| 368 | |
488 | |
| 369 | create_font_cache() { |
489 | create_font_cache() { |
| 370 | # danarmak found out that fc-cache should be run AFTER all the above |
490 | # 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 |
491 | # stuff, as otherwise the cache is invalid, and has to be run again |
| 372 | # as root anyway |
492 | # as root anyway |
| 373 | if [ -x ${ROOT}/usr/bin/fc-cache ]; then |
493 | if [[ -x ${ROOT}/usr/bin/fc-cache ]]; then |
| 374 | ebegin "Creating FC font cache" |
494 | ebegin "Creating FC font cache" |
| 375 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
495 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
| 376 | eend 0 |
496 | eend 0 |
| 377 | fi |
497 | fi |
| 378 | } |
498 | } |