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.26 2005/12/07 22:10:45 joshuabaergen Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.52 2006/04/03 23:49:32 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 autotools |
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" |
… | |
… | |
92 | |
177 | |
93 | x-modular_unpack_source() { |
178 | x-modular_unpack_source() { |
94 | unpack ${A} |
179 | unpack ${A} |
95 | cd ${S} |
180 | cd ${S} |
96 | |
181 | |
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 |
182 | if [[ -n ${FONT_OPTIONS} ]]; then |
102 | einfo "Detected font directory: ${FONT_DIR}" |
183 | einfo "Detected font directory: ${FONT_DIR}" |
103 | fi |
184 | fi |
104 | } |
185 | } |
105 | |
186 | |
106 | x-modular_patch_source() { |
187 | x-modular_patch_source() { |
107 | # Use standardized names and locations with bulk patching |
188 | # Use standardized names and locations with bulk patching |
108 | # Patch directory is ${WORKDIR}/patch |
189 | # Patch directory is ${WORKDIR}/patch |
109 | # See epatch() in eutils.eclass for more documentation |
190 | # See epatch() in eutils.eclass for more documentation |
110 | if [ -z "${EPATCH_SUFFIX}" ] ; then |
191 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
111 | EPATCH_SUFFIX="patch" |
192 | EPATCH_SUFFIX="patch" |
112 | fi |
193 | fi |
113 | |
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 | |
114 | # For specific list of patches |
202 | # For specific list of patches |
115 | if [ -n "${PATCHES}" ] ; then |
203 | if [[ -n "${PATCHES}" ]] ; then |
116 | for PATCH in ${PATCHES} |
204 | for PATCH in ${PATCHES} |
117 | do |
205 | do |
118 | epatch ${PATCH} |
206 | epatch ${PATCH} |
119 | done |
207 | done |
120 | # For non-default directory bulk patching |
208 | # For non-default directory bulk patching |
121 | elif [ -n "${PATCH_LOC}" ] ; then |
209 | elif [[ -n "${PATCH_LOC}" ]] ; then |
122 | epatch ${PATCH_LOC} |
210 | epatch ${PATCH_LOC} |
123 | # For standard bulk patching |
211 | # For standard bulk patching |
124 | elif [ -d "${EPATCH_SOURCE}" ] ; then |
212 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
125 | epatch |
213 | epatch |
126 | fi |
214 | fi |
127 | } |
215 | } |
128 | |
216 | |
129 | x-modular_reconf_source() { |
217 | x-modular_reconf_source() { |
130 | # Run autoreconf for CVS snapshots only |
218 | # Run autoreconf for CVS snapshots only |
131 | if [ "${SNAPSHOT}" = "yes" ] |
219 | if [[ "${SNAPSHOT}" = "yes" ]] |
132 | then |
220 | then |
133 | # If possible, generate configure if it doesn't exist |
221 | # If possible, generate configure if it doesn't exist |
134 | if [ -f "${S}/configure.ac" ] |
222 | if [ -f "${S}/configure.ac" ] |
135 | then |
223 | then |
136 | einfo "Running autoreconf..." |
224 | eautoreconf |
137 | autoreconf -v --force --install |
|
|
138 | fi |
225 | fi |
139 | fi |
226 | fi |
140 | |
227 | |
141 | } |
228 | } |
142 | |
229 | |
143 | x-modular_src_unpack() { |
230 | x-modular_src_unpack() { |
144 | for x in xorg-server xf86-video- xf86-input- ; do |
231 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
145 | if [[ ${PN:0:11} = $x ]] && gcc-specs-now; then |
232 | if gcc-specs-now; then |
146 | msg="Do not emerge ${PN} without vanilla gcc!" |
233 | msg="${PN} does not work with hardened gcc specs. Switch to vanilla gcc specs to emerge ${PN}." |
147 | eerror "$msg" |
234 | eerror "$msg" |
148 | die "$msg" |
235 | die "$msg" |
149 | fi |
236 | fi |
150 | done |
237 | fi |
151 | |
238 | |
152 | x-modular_unpack_source |
239 | x-modular_unpack_source |
153 | x-modular_patch_source |
240 | x-modular_patch_source |
154 | x-modular_reconf_source |
241 | x-modular_reconf_source |
|
|
242 | |
|
|
243 | # Joshua Baergen - October 23, 2005 |
|
|
244 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
245 | elibtoolize |
155 | } |
246 | } |
156 | |
247 | |
157 | x-modular_font_configure() { |
248 | x-modular_font_configure() { |
158 | if [[ -n "${FONT}" ]]; then |
249 | if [[ -n "${FONT}" ]]; then |
159 | # Might be worth adding an option to configure your desired font |
250 | # Might be worth adding an option to configure your desired font |
… | |
… | |
179 | --disable-koi8-r" |
270 | --disable-koi8-r" |
180 | fi |
271 | fi |
181 | fi |
272 | fi |
182 | } |
273 | } |
183 | |
274 | |
|
|
275 | x-modular_debug_setup() { |
|
|
276 | if [[ -n "${DEBUGGABLE}" ]]; then |
|
|
277 | if use debug; then |
|
|
278 | strip-flags |
|
|
279 | append-flags -g |
|
|
280 | fi |
|
|
281 | fi |
|
|
282 | } |
|
|
283 | |
184 | x-modular_src_configure() { |
284 | x-modular_src_configure() { |
185 | x-modular_font_configure |
285 | x-modular_font_configure |
|
|
286 | x-modular_debug_setup |
186 | |
287 | |
187 | # If prefix isn't set here, .pc files cause problems |
288 | # If prefix isn't set here, .pc files cause problems |
188 | if [ -x ./configure ]; then |
289 | if [[ -x ./configure ]]; then |
189 | econf --prefix=${XDIR} \ |
290 | econf --prefix=${XDIR} \ |
190 | --datadir=${XDIR}/share \ |
291 | --datadir=${XDIR}/share \ |
191 | ${FONT_OPTIONS} \ |
292 | ${FONT_OPTIONS} \ |
192 | ${DRIVER_OPTIONS} \ |
293 | ${DRIVER_OPTIONS} \ |
193 | ${CONFIGURE_OPTIONS} |
294 | ${CONFIGURE_OPTIONS} |
… | |
… | |
211 | # Shouldn't be necessary in XDIR=/usr |
312 | # Shouldn't be necessary in XDIR=/usr |
212 | # einstall forces datadir, so we need to re-force it |
313 | # einstall forces datadir, so we need to re-force it |
213 | # datadir=${XDIR}/share \ |
314 | # datadir=${XDIR}/share \ |
214 | # mandir=${XDIR}/share/man \ |
315 | # mandir=${XDIR}/share/man \ |
215 | |
316 | |
|
|
317 | # Make sure docs get compressed |
|
|
318 | prepalldocs |
|
|
319 | |
216 | # Don't install libtool archives for server modules |
320 | # Don't install libtool archives for server modules |
217 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
321 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
218 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
322 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
219 | | xargs rm -f |
323 | | xargs rm -f |
|
|
324 | fi |
|
|
325 | |
|
|
326 | # Don't install overlapping fonts.* files |
|
|
327 | # Generate them instead when possible |
|
|
328 | if [[ -n "${FONT}" ]]; then |
|
|
329 | remove_font_metadata |
220 | fi |
330 | fi |
221 | } |
331 | } |
222 | |
332 | |
223 | x-modular_pkg_preinst() { |
333 | x-modular_pkg_preinst() { |
224 | if [[ -n "${FONT}" ]]; then |
334 | if [[ -n "${FONT}" ]]; then |
… | |
… | |
284 | create_fonts_dir |
394 | create_fonts_dir |
285 | fix_font_permissions |
395 | fix_font_permissions |
286 | create_font_cache |
396 | create_font_cache |
287 | } |
397 | } |
288 | |
398 | |
|
|
399 | remove_font_metadata() { |
|
|
400 | local DIR |
|
|
401 | for DIR in ${FONT_DIR}; do |
|
|
402 | if [[ "${DIR}" != "Speedo" ]] && \ |
|
|
403 | [[ "${DIR}" != "CID" ]] ; then |
|
|
404 | # Delete font metadata files |
|
|
405 | # fonts.scale, fonts.dir, fonts.cache-1 |
|
|
406 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
|
|
407 | fi |
|
|
408 | done |
|
|
409 | } |
|
|
410 | |
289 | discover_font_dirs() { |
411 | discover_font_dirs() { |
290 | pushd ${IMAGE}/usr/share/fonts |
412 | pushd ${IMAGE}/usr/share/fonts |
291 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
413 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
292 | FONT_DIRS="$(echo ${FONT_DIRS} | sed -e 's:./::g')" |
414 | FONT_DIRS="$(echo ${FONT_DIRS} | sed -e 's:./::g')" |
293 | popd |
415 | popd |
… | |
… | |
296 | create_fonts_scale() { |
418 | create_fonts_scale() { |
297 | ebegin "Creating fonts.scale files" |
419 | ebegin "Creating fonts.scale files" |
298 | local x |
420 | local x |
299 | for FONT_DIR in ${FONT_DIRS}; do |
421 | for FONT_DIR in ${FONT_DIRS}; do |
300 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
422 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
301 | [ -z "$(ls ${x}/)" ] && continue |
423 | [[ -z "$(ls ${x}/)" ]] && continue |
302 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
424 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
303 | |
425 | |
304 | # Only generate .scale files if truetype, opentype or type1 |
426 | # Only generate .scale files if truetype, opentype or type1 |
305 | # fonts are present ... |
427 | # fonts are present ... |
306 | |
428 | |
307 | # First truetype (ttf,ttc) |
429 | # First truetype (ttf,ttc) |
308 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
430 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
309 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
431 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
310 | # <spyderous@gentoo.org> 2 August 2004 |
432 | # <spyderous@gentoo.org> 2 August 2004 |
311 | if [ "${x/encodings}" = "${x}" -a \ |
433 | if [[ "${x/encodings}" = "${x}" ]] \ |
312 | -n "$(find ${x} -iname '*.tt[cf]' -print)" ]; then |
434 | && [[ -n "$(find ${x} -iname '*.tt[cf]' -print)" ]]; then |
313 | if [ -x ${ROOT}/usr/bin/ttmkfdir ]; then |
435 | if [[ -x ${ROOT}/usr/bin/ttmkfdir ]]; then |
314 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
436 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
315 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
437 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
316 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
438 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
317 | -o ${x}/fonts.scale -d ${x} |
439 | -o ${x}/fonts.scale -d ${x} |
318 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
440 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
319 | local ttmkfdir_return=$? |
441 | local ttmkfdir_return=$? |
320 | else |
442 | else |
321 | # We didn't use ttmkfdir at all |
443 | # We didn't use ttmkfdir at all |
322 | local ttmkfdir_return=2 |
444 | local ttmkfdir_return=2 |
323 | fi |
445 | fi |
324 | if [ ${ttmkfdir_return} -ne 0 ]; then |
446 | if [[ ${ttmkfdir_return} -ne 0 ]]; then |
325 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
447 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
326 | ${ROOT}/usr/bin/mkfontscale \ |
448 | ${ROOT}/usr/bin/mkfontscale \ |
327 | -a /usr/share/fonts/encodings/encodings.dir \ |
449 | -a /usr/share/fonts/encodings/encodings.dir \ |
328 | -- ${x} |
450 | -- ${x} |
329 | fi |
451 | fi |
330 | # Next type1 and opentype (pfa,pfb,otf,otc) |
452 | # Next type1 and opentype (pfa,pfb,otf,otc) |
331 | elif [ "${x/encodings}" = "${x}" -a \ |
453 | elif [[ "${x/encodings}" = "${x}" ]] \ |
332 | -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]; then |
454 | && [[ -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]]; then |
333 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
455 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
334 | ${ROOT}/usr/bin/mkfontscale \ |
456 | ${ROOT}/usr/bin/mkfontscale \ |
335 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
457 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
336 | -- ${x} |
458 | -- ${x} |
337 | fi |
459 | fi |
… | |
… | |
341 | |
463 | |
342 | create_fonts_dir() { |
464 | create_fonts_dir() { |
343 | ebegin "Generating fonts.dir files" |
465 | ebegin "Generating fonts.dir files" |
344 | for FONT_DIR in ${FONT_DIRS}; do |
466 | for FONT_DIR in ${FONT_DIRS}; do |
345 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
467 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
346 | [ -z "$(ls ${x}/)" ] && continue |
468 | [[ -z "$(ls ${x}/)" ]] && continue |
347 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
469 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
348 | |
470 | |
349 | if [ "${x/encodings}" = "${x}" ]; then |
471 | if [[ "${x/encodings}" = "${x}" ]]; then |
350 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
472 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
351 | ${ROOT}/usr/bin/mkfontdir \ |
473 | ${ROOT}/usr/bin/mkfontdir \ |
352 | -e ${ROOT}/usr/share/fonts/encodings \ |
474 | -e ${ROOT}/usr/share/fonts/encodings \ |
353 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
475 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
354 | -- ${x} |
476 | -- ${x} |
… | |
… | |
368 | |
490 | |
369 | create_font_cache() { |
491 | create_font_cache() { |
370 | # danarmak found out that fc-cache should be run AFTER all the above |
492 | # 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 |
493 | # stuff, as otherwise the cache is invalid, and has to be run again |
372 | # as root anyway |
494 | # as root anyway |
373 | if [ -x ${ROOT}/usr/bin/fc-cache ]; then |
495 | if [[ -x ${ROOT}/usr/bin/fc-cache ]]; then |
374 | ebegin "Creating FC font cache" |
496 | ebegin "Creating FC font cache" |
375 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
497 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
376 | eend 0 |
498 | eend 0 |
377 | fi |
499 | fi |
378 | } |
500 | } |