| 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.13 2005/09/12 21:44:16 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.35 2005/12/23 08:28:00 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 |
28 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
| 14 | |
29 | |
| 15 | inherit eutils |
30 | inherit eutils libtool toolchain-funcs |
| 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/X11R7.0-RC0/everything/${P}.tar.bz2" |
43 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0/src/everything/${P}.tar.bz2 |
|
|
44 | http://xorg.freedesktop.org/releases/X11R7.0-RC4/everything/${P}.tar.bz2 |
|
|
45 | http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
|
|
46 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
|
|
47 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
|
|
48 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
| 23 | LICENSE="X11" |
49 | LICENSE="X11" |
| 24 | SLOT="0" |
50 | SLOT="0" |
| 25 | |
51 | |
| 26 | # Set up shared dependencies |
52 | # Set up shared dependencies |
| 27 | if [ -n "${SNAPSHOT}" ]; then |
53 | if [[ -n "${SNAPSHOT}" ]]; then |
| 28 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
54 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 29 | DEPEND="${DEPEND} |
55 | DEPEND="${DEPEND} |
| 30 | >=sys-devel/autoconf-2.57 |
56 | >=sys-devel/autoconf-2.57 |
| 31 | >=sys-devel/automake-1.7 |
57 | >=sys-devel/automake-1.7 |
| 32 | >=sys-devel/libtool-1.5 |
58 | >=sys-devel/libtool-1.5 |
| 33 | >=sys-devel/m4-1.4" |
59 | >=sys-devel/m4-1.4" |
| 34 | fi |
60 | fi |
| 35 | |
61 | |
| 36 | # If we're a font package, but not the font.alias one |
62 | # If we're a font package, but not the font.alias one |
| 37 | if [[ "${PN/#font}" != "${PN}" ]] && [[ "${PN}" != "font-alias" ]]; then |
63 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
64 | && [[ "${PN}" != "font-alias" ]] \ |
|
|
65 | && [[ "${PN}" != "font-util" ]]; then |
| 38 | # Activate font code in the rest of the eclass |
66 | # Activate font code in the rest of the eclass |
| 39 | FONT="yes" |
67 | FONT="yes" |
| 40 | |
68 | |
| 41 | RDEPEND="${RDEPEND} |
69 | RDEPEND="${RDEPEND} |
| 42 | media-fonts/encodings" |
70 | media-fonts/encodings" |
|
|
71 | DEPEND="${DEPEND} |
|
|
72 | x11-apps/mkfontscale |
|
|
73 | x11-apps/mkfontdir" |
| 43 | PDEPEND="${PDEPEND} |
74 | PDEPEND="${PDEPEND} |
| 44 | media-fonts/font-alias" |
75 | media-fonts/font-alias" |
|
|
76 | |
|
|
77 | # Starting with 7.0RC3, we can specify the font directory |
|
|
78 | # But oddly, we can't do the same for encodings or font-alias |
|
|
79 | |
|
|
80 | # Wrap in `if` so ebuilds can set it too |
|
|
81 | if [[ -z ${FONT_DIR} ]]; then |
|
|
82 | FONT_DIR=${PN##*-} |
|
|
83 | |
|
|
84 | fi |
|
|
85 | |
|
|
86 | # Fix case of font directories |
|
|
87 | FONT_DIR=${FONT_DIR/ttf/TTF} |
|
|
88 | FONT_DIR=${FONT_DIR/otf/OTF} |
|
|
89 | FONT_DIR=${FONT_DIR/type1/Type1} |
|
|
90 | FONT_DIR=${FONT_DIR/speedo/Speedo} |
|
|
91 | |
|
|
92 | # Set up configure option |
|
|
93 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
|
|
94 | |
|
|
95 | if [[ -n "${FONT}" ]]; then |
|
|
96 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]]; then |
|
|
97 | IUSE="${IUSE} nls" |
|
|
98 | fi |
|
|
99 | fi |
| 45 | fi |
100 | fi |
| 46 | |
101 | |
| 47 | # If we're a driver package |
102 | # If we're a driver package |
| 48 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
103 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 49 | # Don't build static driver modules |
104 | # Don't build static driver modules |
| 50 | DRIVER_OPTIONS="--disable-static" |
105 | DRIVER_OPTIONS="--disable-static" |
|
|
106 | |
|
|
107 | # Enable driver code in the rest of the eclass |
|
|
108 | DRIVER="yes" |
|
|
109 | |
|
|
110 | # Add driver patchset to SRC_URI |
|
|
111 | SRC_URI="${SRC_URI} |
|
|
112 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
| 51 | fi |
113 | fi |
| 52 | |
114 | |
| 53 | DEPEND="${DEPEND} |
115 | DEPEND="${DEPEND} |
| 54 | >=dev-util/pkgconfig-0.18 |
116 | >=dev-util/pkgconfig-0.18 |
| 55 | x11-misc/util-macros" |
117 | >=x11-misc/util-macros-0.99.2" |
| 56 | |
118 | |
|
|
119 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
| 57 | RDEPEND="${RDEPEND} |
120 | RDEPEND="${RDEPEND} |
| 58 | !<x11-base/xorg-x11-7" |
121 | !<=x11-base/xorg-x11-6.9 |
|
|
122 | >=sys-apps/man-1.6b-r2" |
| 59 | # Provides virtual/x11 for temporary use until packages are ported |
123 | # Provides virtual/x11 for temporary use until packages are ported |
| 60 | # x11-base/x11-env" |
124 | # x11-base/x11-env" |
| 61 | |
125 | |
| 62 | x-modular_unpack_source() { |
126 | x-modular_unpack_source() { |
| 63 | unpack ${A} |
127 | unpack ${A} |
| 64 | cd ${S} |
128 | cd ${S} |
|
|
129 | |
|
|
130 | if [[ -n ${FONT_OPTIONS} ]]; then |
|
|
131 | einfo "Detected font directory: ${FONT_DIR}" |
|
|
132 | fi |
| 65 | } |
133 | } |
| 66 | |
134 | |
| 67 | x-modular_patch_source() { |
135 | x-modular_patch_source() { |
| 68 | # Use standardized names and locations with bulk patching |
136 | # Use standardized names and locations with bulk patching |
| 69 | # Patch directory is ${WORKDIR}/patch |
137 | # Patch directory is ${WORKDIR}/patch |
| 70 | # See epatch() in eutils.eclass for more documentation |
138 | # See epatch() in eutils.eclass for more documentation |
| 71 | if [ -z "${EPATCH_SUFFIX}" ] ; then |
139 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
| 72 | EPATCH_SUFFIX="patch" |
140 | EPATCH_SUFFIX="patch" |
| 73 | fi |
141 | fi |
| 74 | |
142 | |
|
|
143 | # If this is a driver package we need to fix man page install location. |
|
|
144 | # Running autoreconf will use the patched util-macros to make the |
|
|
145 | # change for us, so we only need to patch if it is not going to run. |
|
|
146 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]; then |
|
|
147 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
148 | fi |
|
|
149 | |
| 75 | # For specific list of patches |
150 | # For specific list of patches |
| 76 | if [ -n "${PATCHES}" ] ; then |
151 | if [[ -n "${PATCHES}" ]] ; then |
| 77 | for PATCH in ${PATCHES} |
152 | for PATCH in ${PATCHES} |
| 78 | do |
153 | do |
| 79 | epatch ${PATCH} |
154 | epatch ${PATCH} |
| 80 | done |
155 | done |
| 81 | # For non-default directory bulk patching |
156 | # For non-default directory bulk patching |
| 82 | elif [ -n "${PATCH_LOC}" ] ; then |
157 | elif [[ -n "${PATCH_LOC}" ]] ; then |
| 83 | epatch ${PATCH_LOC} |
158 | epatch ${PATCH_LOC} |
| 84 | # For standard bulk patching |
159 | # For standard bulk patching |
| 85 | elif [ -d "${EPATCH_SOURCE}" ] ; then |
160 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
| 86 | epatch |
161 | epatch |
| 87 | fi |
162 | fi |
| 88 | } |
163 | } |
| 89 | |
164 | |
| 90 | x-modular_reconf_source() { |
165 | x-modular_reconf_source() { |
| 91 | # Run autoreconf for CVS snapshots only |
166 | # Run autoreconf for CVS snapshots only |
| 92 | if [ "${SNAPSHOT}" = "yes" ] |
167 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 93 | then |
168 | then |
| 94 | # If possible, generate configure if it doesn't exist |
169 | # If possible, generate configure if it doesn't exist |
| 95 | if [ -f "${S}/configure.ac" ] |
170 | if [ -f "${S}/configure.ac" ] |
| 96 | then |
171 | then |
| 97 | einfo "Running autoreconf..." |
172 | einfo "Running autoreconf..." |
| … | |
… | |
| 100 | fi |
175 | fi |
| 101 | |
176 | |
| 102 | } |
177 | } |
| 103 | |
178 | |
| 104 | x-modular_src_unpack() { |
179 | x-modular_src_unpack() { |
|
|
180 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
181 | if gcc-specs-now; then |
|
|
182 | msg="Do not emerge ${PN} without vanilla gcc!" |
|
|
183 | eerror "$msg" |
|
|
184 | die "$msg" |
|
|
185 | fi |
|
|
186 | fi |
|
|
187 | |
| 105 | x-modular_unpack_source |
188 | x-modular_unpack_source |
| 106 | x-modular_patch_source |
189 | x-modular_patch_source |
| 107 | x-modular_reconf_source |
190 | x-modular_reconf_source |
|
|
191 | |
|
|
192 | # Joshua Baergen - October 23, 2005 |
|
|
193 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
194 | elibtoolize |
|
|
195 | } |
|
|
196 | |
|
|
197 | x-modular_font_configure() { |
|
|
198 | if [[ -n "${FONT}" ]]; then |
|
|
199 | # Might be worth adding an option to configure your desired font |
|
|
200 | # and exclude all others. Also, should this USE be nls or minimal? |
|
|
201 | if ! use nls; then |
|
|
202 | FONT_OPTIONS="${FONT_OPTIONS} |
|
|
203 | --disable-iso8859-2 |
|
|
204 | --disable-iso8859-3 |
|
|
205 | --disable-iso8859-4 |
|
|
206 | --disable-iso8859-5 |
|
|
207 | --disable-iso8859-6 |
|
|
208 | --disable-iso8859-7 |
|
|
209 | --disable-iso8859-8 |
|
|
210 | --disable-iso8859-9 |
|
|
211 | --disable-iso8859-10 |
|
|
212 | --disable-iso8859-11 |
|
|
213 | --disable-iso8859-12 |
|
|
214 | --disable-iso8859-13 |
|
|
215 | --disable-iso8859-14 |
|
|
216 | --disable-iso8859-15 |
|
|
217 | --disable-iso8859-16 |
|
|
218 | --disable-jisx0201 |
|
|
219 | --disable-koi8-r" |
|
|
220 | fi |
|
|
221 | fi |
| 108 | } |
222 | } |
| 109 | |
223 | |
| 110 | x-modular_src_configure() { |
224 | x-modular_src_configure() { |
|
|
225 | x-modular_font_configure |
|
|
226 | |
| 111 | # If prefix isn't set here, .pc files cause problems |
227 | # If prefix isn't set here, .pc files cause problems |
| 112 | if [ -x ./configure ]; then |
228 | if [[ -x ./configure ]]; then |
| 113 | econf --prefix=${XDIR} \ |
229 | econf --prefix=${XDIR} \ |
| 114 | --datadir=${XDIR}/share \ |
230 | --datadir=${XDIR}/share \ |
|
|
231 | ${FONT_OPTIONS} \ |
| 115 | ${DRIVER_OPTIONS} \ |
232 | ${DRIVER_OPTIONS} \ |
| 116 | ${CONFIGURE_OPTIONS} |
233 | ${CONFIGURE_OPTIONS} |
| 117 | fi |
234 | fi |
| 118 | } |
235 | } |
| 119 | |
236 | |
| … | |
… | |
| 153 | if [[ -n "${FONT}" ]]; then |
270 | if [[ -n "${FONT}" ]]; then |
| 154 | setup_fonts |
271 | setup_fonts |
| 155 | fi |
272 | fi |
| 156 | } |
273 | } |
| 157 | |
274 | |
|
|
275 | x-modular_pkg_postrm() { |
|
|
276 | if [[ -n "${FONT}" ]]; then |
|
|
277 | cleanup_fonts |
|
|
278 | fi |
|
|
279 | } |
|
|
280 | |
|
|
281 | cleanup_fonts() { |
|
|
282 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
|
|
283 | for DIR in ${FONT_DIR}; do |
|
|
284 | unset KEEP_FONTDIR |
|
|
285 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
|
|
286 | |
|
|
287 | ebegin "Checking ${REAL_DIR} for useless files" |
|
|
288 | pushd ${REAL_DIR} &> /dev/null |
|
|
289 | for FILE in *; do |
|
|
290 | unset MATCH |
|
|
291 | for ALLOWED_FILE in ${ALLOWED_FILES}; do |
|
|
292 | if [[ ${FILE} = ${ALLOWED_FILE} ]]; then |
|
|
293 | # If it's allowed, then move on to the next file |
|
|
294 | MATCH="yes" |
|
|
295 | break |
|
|
296 | fi |
|
|
297 | done |
|
|
298 | # If we found a match in allowed files, move on to the next file |
|
|
299 | if [[ -n ${MATCH} ]]; then |
|
|
300 | continue |
|
|
301 | fi |
|
|
302 | # If we get this far, there wasn't a match in the allowed files |
|
|
303 | KEEP_FONTDIR="yes" |
|
|
304 | # We don't need to check more files if we're already keeping it |
|
|
305 | break |
|
|
306 | done |
|
|
307 | popd &> /dev/null |
|
|
308 | # If there are no files worth keeping, then get rid of the dir |
|
|
309 | if [[ -z "${KEEP_FONTDIR}" ]]; then |
|
|
310 | rm -rf ${REAL_DIR} |
|
|
311 | fi |
|
|
312 | eend 0 |
|
|
313 | done |
|
|
314 | } |
|
|
315 | |
| 158 | setup_fonts() { |
316 | setup_fonts() { |
| 159 | if [[ ! -n "${FONT_DIRS}" ]]; then |
317 | if [[ ! -n "${FONT_DIRS}" ]]; then |
| 160 | msg="FONT_DIRS empty. Set it to at least one subdir of /usr/share/fonts." |
318 | msg="FONT_DIRS is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
| 161 | eerror ${msg} |
319 | eerror "${msg}" |
| 162 | die ${msg} |
320 | die "${msg}" |
| 163 | fi |
321 | fi |
| 164 | |
322 | |
| 165 | create_fonts_scale |
323 | create_fonts_scale |
| 166 | create_fonts_dir |
324 | create_fonts_dir |
| 167 | fix_font_permissions |
325 | fix_font_permissions |
| … | |
… | |
| 178 | create_fonts_scale() { |
336 | create_fonts_scale() { |
| 179 | ebegin "Creating fonts.scale files" |
337 | ebegin "Creating fonts.scale files" |
| 180 | local x |
338 | local x |
| 181 | for FONT_DIR in ${FONT_DIRS}; do |
339 | for FONT_DIR in ${FONT_DIRS}; do |
| 182 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
340 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
| 183 | [ -z "$(ls ${x}/)" ] && continue |
341 | [[ -z "$(ls ${x}/)" ]] && continue |
| 184 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
342 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 185 | |
343 | |
| 186 | # Only generate .scale files if truetype, opentype or type1 |
344 | # Only generate .scale files if truetype, opentype or type1 |
| 187 | # fonts are present ... |
345 | # fonts are present ... |
| 188 | |
346 | |
| 189 | # First truetype (ttf,ttc) |
347 | # First truetype (ttf,ttc) |
| 190 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
348 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
| 191 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
349 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
| 192 | # <spyderous@gentoo.org> 2 August 2004 |
350 | # <spyderous@gentoo.org> 2 August 2004 |
| 193 | if [ "${x/encodings}" = "${x}" -a \ |
351 | if [[ "${x/encodings}" = "${x}" ]] \ |
| 194 | -n "$(find ${x} -iname '*.tt[cf]' -print)" ]; then |
352 | && [[ -n "$(find ${x} -iname '*.tt[cf]' -print)" ]]; then |
| 195 | if [ -x ${ROOT}/usr/bin/ttmkfdir ]; then |
353 | if [[ -x ${ROOT}/usr/bin/ttmkfdir ]]; then |
| 196 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
354 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 197 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
355 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
| 198 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
356 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
| 199 | -o ${x}/fonts.scale -d ${x} |
357 | -o ${x}/fonts.scale -d ${x} |
| 200 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
358 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
| 201 | local ttmkfdir_return=$? |
359 | local ttmkfdir_return=$? |
| 202 | else |
360 | else |
| 203 | # We didn't use ttmkfdir at all |
361 | # We didn't use ttmkfdir at all |
| 204 | local ttmkfdir_return=2 |
362 | local ttmkfdir_return=2 |
| 205 | fi |
363 | fi |
| 206 | if [ ${ttmkfdir_return} -ne 0 ]; then |
364 | if [[ ${ttmkfdir_return} -ne 0 ]]; then |
| 207 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
365 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 208 | ${ROOT}/usr/bin/mkfontscale \ |
366 | ${ROOT}/usr/bin/mkfontscale \ |
| 209 | -a /usr/share/fonts/encodings/encodings.dir \ |
367 | -a /usr/share/fonts/encodings/encodings.dir \ |
| 210 | -- ${x} |
368 | -- ${x} |
| 211 | fi |
369 | fi |
| 212 | # Next type1 and opentype (pfa,pfb,otf,otc) |
370 | # Next type1 and opentype (pfa,pfb,otf,otc) |
| 213 | elif [ "${x/encodings}" = "${x}" -a \ |
371 | elif [[ "${x/encodings}" = "${x}" ]] \ |
| 214 | -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]; then |
372 | && [[ -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]]; then |
| 215 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
373 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 216 | ${ROOT}/usr/bin/mkfontscale \ |
374 | ${ROOT}/usr/bin/mkfontscale \ |
| 217 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
375 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
| 218 | -- ${x} |
376 | -- ${x} |
| 219 | fi |
377 | fi |
| … | |
… | |
| 223 | |
381 | |
| 224 | create_fonts_dir() { |
382 | create_fonts_dir() { |
| 225 | ebegin "Generating fonts.dir files" |
383 | ebegin "Generating fonts.dir files" |
| 226 | for FONT_DIR in ${FONT_DIRS}; do |
384 | for FONT_DIR in ${FONT_DIRS}; do |
| 227 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
385 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
| 228 | [ -z "$(ls ${x}/)" ] && continue |
386 | [[ -z "$(ls ${x}/)" ]] && continue |
| 229 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
387 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 230 | |
388 | |
| 231 | if [ "${x/encodings}" = "${x}" ]; then |
389 | if [[ "${x/encodings}" = "${x}" ]]; then |
| 232 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
390 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 233 | ${ROOT}/usr/bin/mkfontdir \ |
391 | ${ROOT}/usr/bin/mkfontdir \ |
| 234 | -e ${ROOT}/usr/share/fonts/encodings \ |
392 | -e ${ROOT}/usr/share/fonts/encodings \ |
| 235 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
393 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
| 236 | -- ${x} |
394 | -- ${x} |
| … | |
… | |
| 250 | |
408 | |
| 251 | create_font_cache() { |
409 | create_font_cache() { |
| 252 | # danarmak found out that fc-cache should be run AFTER all the above |
410 | # danarmak found out that fc-cache should be run AFTER all the above |
| 253 | # stuff, as otherwise the cache is invalid, and has to be run again |
411 | # stuff, as otherwise the cache is invalid, and has to be run again |
| 254 | # as root anyway |
412 | # as root anyway |
| 255 | if [ -x ${ROOT}/usr/bin/fc-cache ]; then |
413 | if [[ -x ${ROOT}/usr/bin/fc-cache ]]; then |
| 256 | ebegin "Creating FC font cache" |
414 | ebegin "Creating FC font cache" |
| 257 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
415 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
| 258 | eend 0 |
416 | eend 0 |
| 259 | fi |
417 | fi |
| 260 | } |
418 | } |