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