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.71 2006/07/04 02:11:26 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 multilib toolchain-funcs flag-o-matic autotools |
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 | |
24 | LICENSE="X11" |
44 | # Set up SRC_URI for individual modular releases |
|
|
45 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
|
|
46 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; 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 | |
25 | SLOT="0" |
74 | SLOT="0" |
26 | |
75 | |
|
|
76 | # Set the license for the package. This can be overridden by setting |
|
|
77 | # LICENSE after the inherit. |
|
|
78 | LICENSE=${PN} |
|
|
79 | |
27 | # Set up shared dependencies |
80 | # Set up shared dependencies |
28 | if [ -n "${SNAPSHOT}" ]; then |
81 | if [[ -n "${SNAPSHOT}" ]]; then |
29 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
82 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
30 | DEPEND="${DEPEND} |
83 | DEPEND="${DEPEND} |
31 | >=sys-devel/autoconf-2.57 |
84 | >=sys-devel/autoconf-2.57 |
32 | >=sys-devel/automake-1.7 |
85 | >=sys-devel/automake-1.7 |
33 | >=sys-devel/libtool-1.5 |
86 | >=sys-devel/libtool-1.5 |
34 | >=sys-devel/m4-1.4" |
87 | >=sys-devel/m4-1.4" |
35 | fi |
88 | fi |
36 | |
89 | |
37 | # If we're a font package, but not the font.alias one |
90 | # If we're a font package, but not the font.alias one |
38 | if [[ "${PN/#font}" != "${PN}" ]] && [[ "${PN}" != "font-alias" ]]; then |
91 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
92 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
|
|
93 | && [[ "${PN}" != "font-alias" ]] \ |
|
|
94 | && [[ "${PN}" != "font-util" ]]; then |
|
|
95 | # Activate font code in the rest of the eclass |
|
|
96 | FONT="yes" |
|
|
97 | |
39 | RDEPEND="${RDEPEND} |
98 | RDEPEND="${RDEPEND} |
40 | media-fonts/encodings" |
99 | media-fonts/encodings |
|
|
100 | x11-apps/mkfontscale |
|
|
101 | x11-apps/mkfontdir" |
41 | PDEPEND="${PDEPEND} |
102 | PDEPEND="${PDEPEND} |
42 | media-fonts/font-alias" |
103 | media-fonts/font-alias" |
|
|
104 | |
|
|
105 | # Starting with 7.0RC3, we can specify the font directory |
|
|
106 | # But oddly, we can't do the same for encodings or font-alias |
|
|
107 | |
|
|
108 | # Wrap in `if` so ebuilds can set it too |
|
|
109 | if [[ -z ${FONT_DIR} ]]; then |
|
|
110 | FONT_DIR=${PN##*-} |
|
|
111 | |
|
|
112 | fi |
|
|
113 | |
|
|
114 | # Fix case of font directories |
|
|
115 | FONT_DIR=${FONT_DIR/ttf/TTF} |
|
|
116 | FONT_DIR=${FONT_DIR/otf/OTF} |
|
|
117 | FONT_DIR=${FONT_DIR/type1/Type1} |
|
|
118 | FONT_DIR=${FONT_DIR/speedo/Speedo} |
|
|
119 | |
|
|
120 | # Set up configure option |
|
|
121 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
|
|
122 | |
|
|
123 | if [[ -n "${FONT}" ]]; then |
|
|
124 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]]; then |
|
|
125 | IUSE="${IUSE} nls" |
|
|
126 | fi |
|
|
127 | fi |
|
|
128 | fi |
|
|
129 | |
|
|
130 | # If we're a driver package |
|
|
131 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
|
|
132 | # Enable driver code in the rest of the eclass |
|
|
133 | DRIVER="yes" |
|
|
134 | |
|
|
135 | # Add driver patchset to SRC_URI |
|
|
136 | SRC_URI="${SRC_URI} |
|
|
137 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
138 | fi |
|
|
139 | |
|
|
140 | # Debugging -- ignore packages that can't be built with debugging |
|
|
141 | if [[ -z "${FONT}" ]] \ |
|
|
142 | || [[ "${PN/app-doc}" != "${PN}" ]] \ |
|
|
143 | || [[ "${PN/x11-proto}" != "${PN}" ]] \ |
|
|
144 | || [[ "${PN/util-macros}" != "${PN}" ]] \ |
|
|
145 | || [[ "${PN/xbitmaps}" != "${PN}" ]] \ |
|
|
146 | || [[ "${PN/xkbdata}" != "${PN}" ]] \ |
|
|
147 | || [[ "${PN/xorg-cf-files}" != "${PN}" ]] \ |
|
|
148 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
|
|
149 | ; then |
|
|
150 | DEBUGGABLE="yes" |
|
|
151 | IUSE="${IUSE} debug" |
|
|
152 | if use debug; then |
|
|
153 | if ! has splitdebug ${FEATURES}; then |
|
|
154 | RESTRICT="${RESTRICT} nostrip" |
|
|
155 | fi |
|
|
156 | fi |
43 | fi |
157 | fi |
44 | |
158 | |
45 | DEPEND="${DEPEND} |
159 | DEPEND="${DEPEND} |
46 | dev-util/pkgconfig |
160 | >=dev-util/pkgconfig-0.18" |
|
|
161 | |
|
|
162 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
|
|
163 | DEPEND="${DEPEND} |
47 | x11-misc/util-macros" |
164 | >=x11-misc/util-macros-0.99.2 |
|
|
165 | >=sys-devel/binutils-2.16.1-r3" |
|
|
166 | fi |
48 | |
167 | |
49 | RDEPEND="${RDEPEND}" |
168 | RDEPEND="${RDEPEND} |
50 | # Shouldn't be necessary once we're in a standard location |
169 | !<=x11-base/xorg-x11-6.9" |
|
|
170 | # Provides virtual/x11 for temporary use until packages are ported |
51 | # x11-base/x11-env" |
171 | # x11-base/x11-env" |
52 | # FIXME: Uncomment once it's in portage |
172 | |
53 | # !x11-base/xorg-x11" |
173 | x-modular_specs_check() { |
|
|
174 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
175 | append-ldflags -Wl,-z,lazy |
|
|
176 | # (#116698) breaks loading |
|
|
177 | filter-ldflags -Wl,-z,now |
|
|
178 | fi |
|
|
179 | } |
|
|
180 | |
|
|
181 | x-modular_dri_check() { |
|
|
182 | # (#120057) Enabling DRI in drivers requires that the server was built with |
|
|
183 | # support for it |
|
|
184 | if [[ -n "${DRIVER}" ]]; then |
|
|
185 | if has dri ${IUSE} && use dri; then |
|
|
186 | einfo "Checking for direct rendering capabilities ..." |
|
|
187 | if ! built_with_use x11-base/xorg-server dri; then |
|
|
188 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
189 | fi |
|
|
190 | fi |
|
|
191 | fi |
|
|
192 | } |
|
|
193 | |
|
|
194 | x-modular_server_supports_drivers_check() { |
|
|
195 | # (#135873) Only certain servers will actually use or be capable of |
|
|
196 | # building external drivers, including binary drivers. |
|
|
197 | if [[ -n "${DRIVER}" ]]; then |
|
|
198 | if has_version '>=x11-base/xorg-server-1.1'; then |
|
|
199 | if ! built_with_use x11-base/xorg-server xorg; then |
|
|
200 | eerror "x11-base/xorg-server is not built with support for external drivers." |
|
|
201 | die "You must build x11-base/xorg-server with USE=xorg." |
|
|
202 | fi |
|
|
203 | fi |
|
|
204 | fi |
|
|
205 | } |
54 | |
206 | |
55 | x-modular_unpack_source() { |
207 | x-modular_unpack_source() { |
56 | unpack ${A} |
208 | unpack ${A} |
57 | cd ${S} |
209 | cd ${S} |
|
|
210 | |
|
|
211 | if [[ -n ${FONT_OPTIONS} ]]; then |
|
|
212 | einfo "Detected font directory: ${FONT_DIR}" |
|
|
213 | fi |
58 | } |
214 | } |
59 | |
215 | |
60 | x-modular_patch_source() { |
216 | x-modular_patch_source() { |
61 | # Use standardized names and locations with bulk patching |
217 | # Use standardized names and locations with bulk patching |
62 | # Patch directory is ${WORKDIR}/patch |
218 | # Patch directory is ${WORKDIR}/patch |
63 | # See epatch() in eutils.eclass for more documentation |
219 | # See epatch() in eutils.eclass for more documentation |
64 | if [ -z "${EPATCH_SUFFIX}" ] ; then |
220 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
65 | EPATCH_SUFFIX="patch" |
221 | EPATCH_SUFFIX="patch" |
66 | fi |
222 | fi |
67 | |
223 | |
|
|
224 | # If this is a driver package we need to fix man page install location. |
|
|
225 | # Running autoreconf will use the patched util-macros to make the |
|
|
226 | # change for us, so we only need to patch if it is not going to run. |
|
|
227 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]; then |
|
|
228 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
229 | fi |
|
|
230 | |
68 | # For specific list of patches |
231 | # For specific list of patches |
69 | if [ -n "${PATCHES}" ] ; then |
232 | if [[ -n "${PATCHES}" ]] ; then |
70 | for PATCH in ${PATCHES} |
233 | for PATCH in ${PATCHES} |
71 | do |
234 | do |
72 | epatch ${PATCH} |
235 | epatch ${PATCH} |
73 | done |
236 | done |
74 | # For non-default directory bulk patching |
237 | # For non-default directory bulk patching |
75 | elif [ -n "${PATCH_LOC}" ] ; then |
238 | elif [[ -n "${PATCH_LOC}" ]] ; then |
76 | epatch ${PATCH_LOC} |
239 | epatch ${PATCH_LOC} |
77 | # For standard bulk patching |
240 | # For standard bulk patching |
78 | elif [ -d "${EPATCH_SOURCE}" ] ; then |
241 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
79 | epatch |
242 | epatch |
80 | fi |
243 | fi |
81 | } |
244 | } |
82 | |
245 | |
83 | x-modular_reconf_source() { |
246 | x-modular_reconf_source() { |
84 | # Run autoreconf for CVS snapshots only |
247 | # Run autoreconf for CVS snapshots only |
85 | if [ "${SNAPSHOT}" = "yes" ] |
248 | if [[ "${SNAPSHOT}" = "yes" ]] |
86 | then |
249 | then |
87 | # If possible, generate configure if it doesn't exist |
250 | # If possible, generate configure if it doesn't exist |
88 | if [ -f "${S}/configure.ac" ] |
251 | if [ -f "${S}/configure.ac" ] |
89 | then |
252 | then |
90 | einfo "Running autoreconf..." |
253 | eautoreconf |
91 | autoreconf -v --install |
|
|
92 | fi |
|
|
93 | fi |
254 | fi |
|
|
255 | fi |
94 | |
256 | |
|
|
257 | # Joshua Baergen - October 23, 2005 |
|
|
258 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
259 | elibtoolize |
95 | } |
260 | } |
96 | |
261 | |
97 | x-modular_src_unpack() { |
262 | x-modular_src_unpack() { |
|
|
263 | x-modular_specs_check |
|
|
264 | x-modular_server_supports_drivers_check |
|
|
265 | x-modular_dri_check |
98 | x-modular_unpack_source |
266 | x-modular_unpack_source |
99 | x-modular_patch_source |
267 | x-modular_patch_source |
100 | x-modular_reconf_source |
268 | x-modular_reconf_source |
101 | } |
269 | } |
102 | |
270 | |
|
|
271 | x-modular_font_configure() { |
|
|
272 | if [[ -n "${FONT}" ]]; then |
|
|
273 | # Might be worth adding an option to configure your desired font |
|
|
274 | # and exclude all others. Also, should this USE be nls or minimal? |
|
|
275 | if ! use nls; then |
|
|
276 | FONT_OPTIONS="${FONT_OPTIONS} |
|
|
277 | --disable-iso8859-2 |
|
|
278 | --disable-iso8859-3 |
|
|
279 | --disable-iso8859-4 |
|
|
280 | --disable-iso8859-5 |
|
|
281 | --disable-iso8859-6 |
|
|
282 | --disable-iso8859-7 |
|
|
283 | --disable-iso8859-8 |
|
|
284 | --disable-iso8859-9 |
|
|
285 | --disable-iso8859-10 |
|
|
286 | --disable-iso8859-11 |
|
|
287 | --disable-iso8859-12 |
|
|
288 | --disable-iso8859-13 |
|
|
289 | --disable-iso8859-14 |
|
|
290 | --disable-iso8859-15 |
|
|
291 | --disable-iso8859-16 |
|
|
292 | --disable-jisx0201 |
|
|
293 | --disable-koi8-r" |
|
|
294 | fi |
|
|
295 | fi |
|
|
296 | } |
|
|
297 | |
|
|
298 | x-modular_debug_setup() { |
|
|
299 | if [[ -n "${DEBUGGABLE}" ]]; then |
|
|
300 | if use debug; then |
|
|
301 | strip-flags |
|
|
302 | append-flags -g |
|
|
303 | fi |
|
|
304 | fi |
|
|
305 | } |
|
|
306 | |
103 | x-modular_src_compile() { |
307 | x-modular_src_configure() { |
|
|
308 | x-modular_font_configure |
|
|
309 | x-modular_debug_setup |
|
|
310 | |
104 | # If prefix isn't set here, .pc files cause problems |
311 | # If prefix isn't set here, .pc files cause problems |
105 | if [ -x ./configure ]; then |
312 | if [[ -x ./configure ]]; then |
106 | econf --prefix=${XDIR} \ |
313 | econf --prefix=${XDIR} \ |
107 | --datadir=${XDIR}/share \ |
314 | --datadir=${XDIR}/share \ |
|
|
315 | ${FONT_OPTIONS} \ |
|
|
316 | ${DRIVER_OPTIONS} \ |
108 | ${CONFIGURE_OPTIONS} |
317 | ${CONFIGURE_OPTIONS} |
109 | fi |
318 | fi |
|
|
319 | } |
|
|
320 | |
|
|
321 | x-modular_src_make() { |
110 | emake || die "emake failed" |
322 | emake || die "emake failed" |
|
|
323 | } |
|
|
324 | |
|
|
325 | x-modular_src_compile() { |
|
|
326 | x-modular_src_configure |
|
|
327 | x-modular_src_make |
111 | } |
328 | } |
112 | |
329 | |
113 | x-modular_src_install() { |
330 | x-modular_src_install() { |
114 | # Install everything to ${XDIR} |
331 | # Install everything to ${XDIR} |
115 | make \ |
332 | make \ |
… | |
… | |
117 | install |
334 | install |
118 | # Shouldn't be necessary in XDIR=/usr |
335 | # Shouldn't be necessary in XDIR=/usr |
119 | # einstall forces datadir, so we need to re-force it |
336 | # einstall forces datadir, so we need to re-force it |
120 | # datadir=${XDIR}/share \ |
337 | # datadir=${XDIR}/share \ |
121 | # mandir=${XDIR}/share/man \ |
338 | # mandir=${XDIR}/share/man \ |
|
|
339 | |
|
|
340 | if [[ -e ${S}/ChangeLog ]]; then |
|
|
341 | dodoc ${S}/ChangeLog |
|
|
342 | fi |
|
|
343 | |
|
|
344 | # Make sure docs get compressed |
|
|
345 | prepalldocs |
|
|
346 | |
|
|
347 | # Don't install libtool archives for server modules |
|
|
348 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
|
|
349 | find ${D}/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
|
|
350 | | xargs rm -f |
|
|
351 | fi |
|
|
352 | |
|
|
353 | # Don't install overlapping fonts.* files |
|
|
354 | # Generate them instead when possible |
|
|
355 | if [[ -n "${FONT}" ]]; then |
|
|
356 | remove_font_metadata |
|
|
357 | fi |
|
|
358 | } |
|
|
359 | |
|
|
360 | x-modular_pkg_preinst() { |
|
|
361 | if [[ -n "${FONT}" ]]; then |
|
|
362 | discover_font_dirs |
|
|
363 | fi |
122 | } |
364 | } |
123 | |
365 | |
124 | x-modular_pkg_postinst() { |
366 | x-modular_pkg_postinst() { |
125 | if [[ -n "${FONT}" ]]; then |
367 | if [[ -n "${FONT}" ]]; then |
126 | setup_fonts |
368 | setup_fonts |
127 | fi |
369 | fi |
128 | } |
370 | } |
129 | |
371 | |
|
|
372 | x-modular_pkg_postrm() { |
|
|
373 | if [[ -n "${FONT}" ]]; then |
|
|
374 | cleanup_fonts |
|
|
375 | fi |
|
|
376 | } |
|
|
377 | |
|
|
378 | cleanup_fonts() { |
|
|
379 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
|
|
380 | for DIR in ${FONT_DIR}; do |
|
|
381 | unset KEEP_FONTDIR |
|
|
382 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
|
|
383 | |
|
|
384 | ebegin "Checking ${REAL_DIR} for useless files" |
|
|
385 | pushd ${REAL_DIR} &> /dev/null |
|
|
386 | for FILE in *; do |
|
|
387 | unset MATCH |
|
|
388 | for ALLOWED_FILE in ${ALLOWED_FILES}; do |
|
|
389 | if [[ ${FILE} = ${ALLOWED_FILE} ]]; then |
|
|
390 | # If it's allowed, then move on to the next file |
|
|
391 | MATCH="yes" |
|
|
392 | break |
|
|
393 | fi |
|
|
394 | done |
|
|
395 | # If we found a match in allowed files, move on to the next file |
|
|
396 | if [[ -n ${MATCH} ]]; then |
|
|
397 | continue |
|
|
398 | fi |
|
|
399 | # If we get this far, there wasn't a match in the allowed files |
|
|
400 | KEEP_FONTDIR="yes" |
|
|
401 | # We don't need to check more files if we're already keeping it |
|
|
402 | break |
|
|
403 | done |
|
|
404 | popd &> /dev/null |
|
|
405 | # If there are no files worth keeping, then get rid of the dir |
|
|
406 | if [[ -z "${KEEP_FONTDIR}" ]]; then |
|
|
407 | rm -rf ${REAL_DIR} |
|
|
408 | fi |
|
|
409 | eend 0 |
|
|
410 | done |
|
|
411 | } |
|
|
412 | |
130 | setup_fonts() { |
413 | setup_fonts() { |
131 | if [[ ! -n "${FONT_DIRS}" ]]; then |
414 | if [[ ! -n "${FONT_DIRS}" ]]; then |
132 | msg="FONT_DIRS empty. Set it to at least one subdir of /usr/share/fonts." |
415 | msg="FONT_DIRS is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
133 | eerror ${msg} |
416 | eerror "${msg}" |
134 | die ${msg} |
417 | die "${msg}" |
135 | fi |
418 | fi |
136 | |
419 | |
137 | create_fonts_scale |
420 | create_fonts_scale |
138 | create_fonts_dir |
421 | create_fonts_dir |
139 | fix_font_permissions |
422 | fix_font_permissions |
140 | create_font_cache |
423 | create_font_cache |
|
|
424 | } |
|
|
425 | |
|
|
426 | remove_font_metadata() { |
|
|
427 | local DIR |
|
|
428 | for DIR in ${FONT_DIR}; do |
|
|
429 | if [[ "${DIR}" != "Speedo" ]] && \ |
|
|
430 | [[ "${DIR}" != "CID" ]] ; then |
|
|
431 | # Delete font metadata files |
|
|
432 | # fonts.scale, fonts.dir, fonts.cache-1 |
|
|
433 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
|
|
434 | fi |
|
|
435 | done |
|
|
436 | } |
|
|
437 | |
|
|
438 | discover_font_dirs() { |
|
|
439 | pushd ${IMAGE}/usr/share/fonts |
|
|
440 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
|
|
441 | FONT_DIRS="$(echo ${FONT_DIRS} | sed -e 's:./::g')" |
|
|
442 | popd |
141 | } |
443 | } |
142 | |
444 | |
143 | create_fonts_scale() { |
445 | create_fonts_scale() { |
144 | ebegin "Creating fonts.scale files" |
446 | ebegin "Creating fonts.scale files" |
145 | local x |
447 | local x |
146 | for FONT_DIR in ${FONT_DIRS}; do |
448 | for FONT_DIR in ${FONT_DIRS}; do |
147 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
449 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
148 | [ -z "$(ls ${x}/)" ] && continue |
450 | [[ -z "$(ls ${x}/)" ]] && continue |
149 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
451 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
150 | |
452 | |
151 | # Only generate .scale files if truetype, opentype or type1 |
453 | # Only generate .scale files if truetype, opentype or type1 |
152 | # fonts are present ... |
454 | # fonts are present ... |
153 | |
455 | |
154 | # First truetype (ttf,ttc) |
456 | # First truetype (ttf,ttc) |
155 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
457 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
156 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
458 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
157 | # <spyderous@gentoo.org> 2 August 2004 |
459 | # <spyderous@gentoo.org> 2 August 2004 |
158 | if [ "${x/encodings}" = "${x}" -a \ |
460 | if [[ "${x/encodings}" = "${x}" ]] \ |
159 | -n "$(find ${x} -iname '*.tt[cf]' -print)" ]; then |
461 | && [[ -n "$(find ${x} -iname '*.tt[cf]' -print)" ]]; then |
160 | if [ -x ${ROOT}/usr/bin/ttmkfdir ]; then |
462 | if [[ -x ${ROOT}/usr/bin/ttmkfdir ]]; then |
161 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
463 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
162 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
464 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
163 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
465 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
164 | -o ${x}/fonts.scale -d ${x} |
466 | -o ${x}/fonts.scale -d ${x} |
165 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
467 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
166 | local ttmkfdir_return=$? |
468 | local ttmkfdir_return=$? |
167 | else |
469 | else |
168 | # We didn't use ttmkfdir at all |
470 | # We didn't use ttmkfdir at all |
169 | local ttmkfdir_return=2 |
471 | local ttmkfdir_return=2 |
170 | fi |
472 | fi |
171 | if [ ${ttmkfdir_return} -ne 0 ]; then |
473 | if [[ ${ttmkfdir_return} -ne 0 ]]; then |
172 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
474 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
173 | ${ROOT}/usr/bin/mkfontscale \ |
475 | ${ROOT}/usr/bin/mkfontscale \ |
174 | -a /usr/share/fonts/encodings/encodings.dir \ |
476 | -a /usr/share/fonts/encodings/encodings.dir \ |
175 | -- ${x} |
477 | -- ${x} |
176 | fi |
478 | fi |
177 | # Next type1 and opentype (pfa,pfb,otf,otc) |
479 | # Next type1 and opentype (pfa,pfb,otf,otc) |
178 | elif [ "${x/encodings}" = "${x}" -a \ |
480 | elif [[ "${x/encodings}" = "${x}" ]] \ |
179 | -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]; then |
481 | && [[ -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]]; then |
180 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
482 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
181 | ${ROOT}/usr/bin/mkfontscale \ |
483 | ${ROOT}/usr/bin/mkfontscale \ |
182 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
484 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
183 | -- ${x} |
485 | -- ${x} |
184 | fi |
486 | fi |
… | |
… | |
188 | |
490 | |
189 | create_fonts_dir() { |
491 | create_fonts_dir() { |
190 | ebegin "Generating fonts.dir files" |
492 | ebegin "Generating fonts.dir files" |
191 | for FONT_DIR in ${FONT_DIRS}; do |
493 | for FONT_DIR in ${FONT_DIRS}; do |
192 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
494 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
193 | [ -z "$(ls ${x}/)" ] && continue |
495 | [[ -z "$(ls ${x}/)" ]] && continue |
194 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
496 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
195 | |
497 | |
196 | if [ "${x/encodings}" = "${x}" ]; then |
498 | if [[ "${x/encodings}" = "${x}" ]]; then |
197 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
499 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
198 | ${ROOT}/usr/bin/mkfontdir \ |
500 | ${ROOT}/usr/bin/mkfontdir \ |
199 | -e ${ROOT}/usr/share/fonts/encodings \ |
501 | -e ${ROOT}/usr/share/fonts/encodings \ |
200 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
502 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
201 | -- ${x} |
503 | -- ${x} |
… | |
… | |
215 | |
517 | |
216 | create_font_cache() { |
518 | create_font_cache() { |
217 | # danarmak found out that fc-cache should be run AFTER all the above |
519 | # 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 |
520 | # stuff, as otherwise the cache is invalid, and has to be run again |
219 | # as root anyway |
521 | # as root anyway |
220 | if [ -x ${ROOT}/usr/bin/fc-cache ]; then |
522 | if [[ -x ${ROOT}/usr/bin/fc-cache ]]; then |
221 | ebegin "Creating FC font cache" |
523 | ebegin "Creating FC font cache" |
222 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
524 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
223 | eend 0 |
525 | eend 0 |
224 | fi |
526 | fi |
225 | } |
527 | } |