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