| 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.45 2006/02/15 21:33:15 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 |
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 |
| … | |
… | |
| 42 | && [[ "${PN}" != "font-util" ]]; then |
97 | && [[ "${PN}" != "font-util" ]]; then |
| 43 | # Activate font code in the rest of the eclass |
98 | # Activate font code in the rest of the eclass |
| 44 | FONT="yes" |
99 | FONT="yes" |
| 45 | |
100 | |
| 46 | RDEPEND="${RDEPEND} |
101 | RDEPEND="${RDEPEND} |
| 47 | media-fonts/encodings" |
102 | media-fonts/encodings |
|
|
103 | x11-apps/mkfontscale |
|
|
104 | x11-apps/mkfontdir" |
| 48 | PDEPEND="${PDEPEND} |
105 | PDEPEND="${PDEPEND} |
| 49 | media-fonts/font-alias" |
106 | media-fonts/font-alias" |
| 50 | |
107 | |
| 51 | # Starting with 7.0RC3, we can specify the font directory |
108 | # Starting with 7.0RC3, we can specify the font directory |
| 52 | # But oddly, we can't do the same for encodings or font-alias |
109 | # But oddly, we can't do the same for encodings or font-alias |
| … | |
… | |
| 73 | fi |
130 | fi |
| 74 | fi |
131 | fi |
| 75 | |
132 | |
| 76 | # If we're a driver package |
133 | # If we're a driver package |
| 77 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
134 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 78 | # Don't build static driver modules |
135 | # Enable driver code in the rest of the eclass |
| 79 | DRIVER_OPTIONS="--disable-static" |
136 | DRIVER="yes" |
|
|
137 | |
|
|
138 | # Add driver patchset to SRC_URI |
|
|
139 | SRC_URI="${SRC_URI} |
|
|
140 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
141 | fi |
|
|
142 | |
|
|
143 | # Debugging -- ignore packages that can't be built with debugging |
|
|
144 | if [[ -z "${FONT}" ]] \ |
|
|
145 | || [[ "${PN/app-doc}" != "${PN}" ]] \ |
|
|
146 | || [[ "${PN/x11-proto}" != "${PN}" ]] \ |
|
|
147 | || [[ "${PN/util-macros}" != "${PN}" ]] \ |
|
|
148 | || [[ "${PN/xbitmaps}" != "${PN}" ]] \ |
|
|
149 | || [[ "${PN/xkbdata}" != "${PN}" ]] \ |
|
|
150 | || [[ "${PN/xorg-cf-files}" != "${PN}" ]] \ |
|
|
151 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
|
|
152 | ; then |
|
|
153 | DEBUGGABLE="yes" |
|
|
154 | IUSE="${IUSE} debug" |
|
|
155 | if use debug; then |
|
|
156 | RESTRICT="${RESTRICT} nostrip" |
|
|
157 | fi |
| 80 | fi |
158 | fi |
| 81 | |
159 | |
| 82 | DEPEND="${DEPEND} |
160 | DEPEND="${DEPEND} |
| 83 | >=dev-util/pkgconfig-0.18 |
161 | >=dev-util/pkgconfig-0.18" |
|
|
162 | |
|
|
163 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
|
|
164 | DEPEND="${DEPEND} |
| 84 | >=x11-misc/util-macros-0.99.2" |
165 | >=x11-misc/util-macros-0.99.2" |
|
|
166 | fi |
| 85 | |
167 | |
| 86 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
168 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
| 87 | RDEPEND="${RDEPEND} |
169 | RDEPEND="${RDEPEND} |
| 88 | !<=x11-base/xorg-x11-6.9 |
170 | !<=x11-base/xorg-x11-6.9 |
| 89 | >=sys-apps/man-1.6b-r2" |
171 | >=sys-apps/man-1.6b-r2" |
| … | |
… | |
| 92 | |
174 | |
| 93 | x-modular_unpack_source() { |
175 | x-modular_unpack_source() { |
| 94 | unpack ${A} |
176 | unpack ${A} |
| 95 | cd ${S} |
177 | cd ${S} |
| 96 | |
178 | |
| 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 |
179 | if [[ -n ${FONT_OPTIONS} ]]; then |
| 102 | einfo "Detected font directory: ${FONT_DIR}" |
180 | einfo "Detected font directory: ${FONT_DIR}" |
| 103 | fi |
181 | fi |
| 104 | } |
182 | } |
| 105 | |
183 | |
| 106 | x-modular_patch_source() { |
184 | x-modular_patch_source() { |
| 107 | # Use standardized names and locations with bulk patching |
185 | # Use standardized names and locations with bulk patching |
| 108 | # Patch directory is ${WORKDIR}/patch |
186 | # Patch directory is ${WORKDIR}/patch |
| 109 | # See epatch() in eutils.eclass for more documentation |
187 | # See epatch() in eutils.eclass for more documentation |
| 110 | if [ -z "${EPATCH_SUFFIX}" ] ; then |
188 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
| 111 | EPATCH_SUFFIX="patch" |
189 | EPATCH_SUFFIX="patch" |
| 112 | fi |
190 | fi |
| 113 | |
191 | |
|
|
192 | # If this is a driver package we need to fix man page install location. |
|
|
193 | # Running autoreconf will use the patched util-macros to make the |
|
|
194 | # change for us, so we only need to patch if it is not going to run. |
|
|
195 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]; then |
|
|
196 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
197 | fi |
|
|
198 | |
| 114 | # For specific list of patches |
199 | # For specific list of patches |
| 115 | if [ -n "${PATCHES}" ] ; then |
200 | if [[ -n "${PATCHES}" ]] ; then |
| 116 | for PATCH in ${PATCHES} |
201 | for PATCH in ${PATCHES} |
| 117 | do |
202 | do |
| 118 | epatch ${PATCH} |
203 | epatch ${PATCH} |
| 119 | done |
204 | done |
| 120 | # For non-default directory bulk patching |
205 | # For non-default directory bulk patching |
| 121 | elif [ -n "${PATCH_LOC}" ] ; then |
206 | elif [[ -n "${PATCH_LOC}" ]] ; then |
| 122 | epatch ${PATCH_LOC} |
207 | epatch ${PATCH_LOC} |
| 123 | # For standard bulk patching |
208 | # For standard bulk patching |
| 124 | elif [ -d "${EPATCH_SOURCE}" ] ; then |
209 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
| 125 | epatch |
210 | epatch |
| 126 | fi |
211 | fi |
| 127 | } |
212 | } |
| 128 | |
213 | |
| 129 | x-modular_reconf_source() { |
214 | x-modular_reconf_source() { |
| 130 | # Run autoreconf for CVS snapshots only |
215 | # Run autoreconf for CVS snapshots only |
| 131 | if [ "${SNAPSHOT}" = "yes" ] |
216 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 132 | then |
217 | then |
| 133 | # If possible, generate configure if it doesn't exist |
218 | # If possible, generate configure if it doesn't exist |
| 134 | if [ -f "${S}/configure.ac" ] |
219 | if [ -f "${S}/configure.ac" ] |
| 135 | then |
220 | then |
| 136 | einfo "Running autoreconf..." |
221 | einfo "Running autoreconf..." |
| … | |
… | |
| 139 | fi |
224 | fi |
| 140 | |
225 | |
| 141 | } |
226 | } |
| 142 | |
227 | |
| 143 | x-modular_src_unpack() { |
228 | x-modular_src_unpack() { |
|
|
229 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
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 | |
| 144 | x-modular_unpack_source |
237 | x-modular_unpack_source |
| 145 | x-modular_patch_source |
238 | x-modular_patch_source |
| 146 | x-modular_reconf_source |
239 | x-modular_reconf_source |
|
|
240 | |
|
|
241 | # Joshua Baergen - October 23, 2005 |
|
|
242 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
243 | elibtoolize |
| 147 | } |
244 | } |
| 148 | |
245 | |
| 149 | x-modular_font_configure() { |
246 | x-modular_font_configure() { |
| 150 | if [[ -n "${FONT}" ]]; then |
247 | if [[ -n "${FONT}" ]]; then |
| 151 | # Might be worth adding an option to configure your desired font |
248 | # Might be worth adding an option to configure your desired font |
| … | |
… | |
| 171 | --disable-koi8-r" |
268 | --disable-koi8-r" |
| 172 | fi |
269 | fi |
| 173 | fi |
270 | fi |
| 174 | } |
271 | } |
| 175 | |
272 | |
|
|
273 | x-modular_debug_setup() { |
|
|
274 | if [[ -n "${DEBUGGABLE}" ]]; then |
|
|
275 | if use debug; then |
|
|
276 | strip-flags |
|
|
277 | append-flags -g |
|
|
278 | fi |
|
|
279 | fi |
|
|
280 | } |
|
|
281 | |
| 176 | x-modular_src_configure() { |
282 | x-modular_src_configure() { |
| 177 | x-modular_font_configure |
283 | x-modular_font_configure |
|
|
284 | x-modular_debug_setup |
| 178 | |
285 | |
| 179 | # If prefix isn't set here, .pc files cause problems |
286 | # If prefix isn't set here, .pc files cause problems |
| 180 | if [ -x ./configure ]; then |
287 | if [[ -x ./configure ]]; then |
| 181 | econf --prefix=${XDIR} \ |
288 | econf --prefix=${XDIR} \ |
| 182 | --datadir=${XDIR}/share \ |
289 | --datadir=${XDIR}/share \ |
| 183 | ${FONT_OPTIONS} \ |
290 | ${FONT_OPTIONS} \ |
| 184 | ${DRIVER_OPTIONS} \ |
291 | ${DRIVER_OPTIONS} \ |
| 185 | ${CONFIGURE_OPTIONS} |
292 | ${CONFIGURE_OPTIONS} |
| … | |
… | |
| 288 | create_fonts_scale() { |
395 | create_fonts_scale() { |
| 289 | ebegin "Creating fonts.scale files" |
396 | ebegin "Creating fonts.scale files" |
| 290 | local x |
397 | local x |
| 291 | for FONT_DIR in ${FONT_DIRS}; do |
398 | for FONT_DIR in ${FONT_DIRS}; do |
| 292 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
399 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
| 293 | [ -z "$(ls ${x}/)" ] && continue |
400 | [[ -z "$(ls ${x}/)" ]] && continue |
| 294 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
401 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 295 | |
402 | |
| 296 | # Only generate .scale files if truetype, opentype or type1 |
403 | # Only generate .scale files if truetype, opentype or type1 |
| 297 | # fonts are present ... |
404 | # fonts are present ... |
| 298 | |
405 | |
| 299 | # First truetype (ttf,ttc) |
406 | # First truetype (ttf,ttc) |
| 300 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
407 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
| 301 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
408 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
| 302 | # <spyderous@gentoo.org> 2 August 2004 |
409 | # <spyderous@gentoo.org> 2 August 2004 |
| 303 | if [ "${x/encodings}" = "${x}" -a \ |
410 | if [[ "${x/encodings}" = "${x}" ]] \ |
| 304 | -n "$(find ${x} -iname '*.tt[cf]' -print)" ]; then |
411 | && [[ -n "$(find ${x} -iname '*.tt[cf]' -print)" ]]; then |
| 305 | if [ -x ${ROOT}/usr/bin/ttmkfdir ]; then |
412 | if [[ -x ${ROOT}/usr/bin/ttmkfdir ]]; then |
| 306 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
413 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 307 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
414 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
| 308 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
415 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
| 309 | -o ${x}/fonts.scale -d ${x} |
416 | -o ${x}/fonts.scale -d ${x} |
| 310 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
417 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
| 311 | local ttmkfdir_return=$? |
418 | local ttmkfdir_return=$? |
| 312 | else |
419 | else |
| 313 | # We didn't use ttmkfdir at all |
420 | # We didn't use ttmkfdir at all |
| 314 | local ttmkfdir_return=2 |
421 | local ttmkfdir_return=2 |
| 315 | fi |
422 | fi |
| 316 | if [ ${ttmkfdir_return} -ne 0 ]; then |
423 | if [[ ${ttmkfdir_return} -ne 0 ]]; then |
| 317 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
424 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 318 | ${ROOT}/usr/bin/mkfontscale \ |
425 | ${ROOT}/usr/bin/mkfontscale \ |
| 319 | -a /usr/share/fonts/encodings/encodings.dir \ |
426 | -a /usr/share/fonts/encodings/encodings.dir \ |
| 320 | -- ${x} |
427 | -- ${x} |
| 321 | fi |
428 | fi |
| 322 | # Next type1 and opentype (pfa,pfb,otf,otc) |
429 | # Next type1 and opentype (pfa,pfb,otf,otc) |
| 323 | elif [ "${x/encodings}" = "${x}" -a \ |
430 | elif [[ "${x/encodings}" = "${x}" ]] \ |
| 324 | -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]; then |
431 | && [[ -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]]; then |
| 325 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
432 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 326 | ${ROOT}/usr/bin/mkfontscale \ |
433 | ${ROOT}/usr/bin/mkfontscale \ |
| 327 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
434 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
| 328 | -- ${x} |
435 | -- ${x} |
| 329 | fi |
436 | fi |
| … | |
… | |
| 333 | |
440 | |
| 334 | create_fonts_dir() { |
441 | create_fonts_dir() { |
| 335 | ebegin "Generating fonts.dir files" |
442 | ebegin "Generating fonts.dir files" |
| 336 | for FONT_DIR in ${FONT_DIRS}; do |
443 | for FONT_DIR in ${FONT_DIRS}; do |
| 337 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
444 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
| 338 | [ -z "$(ls ${x}/)" ] && continue |
445 | [[ -z "$(ls ${x}/)" ]] && continue |
| 339 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
446 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 340 | |
447 | |
| 341 | if [ "${x/encodings}" = "${x}" ]; then |
448 | if [[ "${x/encodings}" = "${x}" ]]; then |
| 342 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
449 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 343 | ${ROOT}/usr/bin/mkfontdir \ |
450 | ${ROOT}/usr/bin/mkfontdir \ |
| 344 | -e ${ROOT}/usr/share/fonts/encodings \ |
451 | -e ${ROOT}/usr/share/fonts/encodings \ |
| 345 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
452 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
| 346 | -- ${x} |
453 | -- ${x} |
| … | |
… | |
| 360 | |
467 | |
| 361 | create_font_cache() { |
468 | create_font_cache() { |
| 362 | # danarmak found out that fc-cache should be run AFTER all the above |
469 | # 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 |
470 | # stuff, as otherwise the cache is invalid, and has to be run again |
| 364 | # as root anyway |
471 | # as root anyway |
| 365 | if [ -x ${ROOT}/usr/bin/fc-cache ]; then |
472 | if [[ -x ${ROOT}/usr/bin/fc-cache ]]; then |
| 366 | ebegin "Creating FC font cache" |
473 | ebegin "Creating FC font cache" |
| 367 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
474 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
| 368 | eend 0 |
475 | eend 0 |
| 369 | fi |
476 | fi |
| 370 | } |
477 | } |