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