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