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.60 2006/05/23 17:50:30 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.90 2008/02/21 22:50:51 cardoe Exp $ |
4 | # |
4 | # |
5 | # Author: Donnie Berkholz <spyderous@gentoo.org> |
5 | # Author: Donnie Berkholz <dberkholz@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 | # Using this eclass: |
10 | # Using this eclass: |
… | |
… | |
19 | # |
19 | # |
20 | # If you're creating a font package and the suffix of PN is not equal to the |
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 |
21 | # subdirectory of /usr/share/fonts/ it should install into, set FONT_DIR to that |
22 | # directory or directories. |
22 | # directory or directories. |
23 | # |
23 | # |
|
|
24 | # If you want to change the auto-application of the driver patchset or prevent |
|
|
25 | # it from applying, edit XDPVER in the ebuild. Set it to -1 to prevent patch |
|
|
26 | # application or positive integers for that patch version. |
|
|
27 | # |
24 | # IMPORTANT: Both SNAPSHOT and FONT_DIR must be set _before_ the inherit. |
28 | # IMPORTANT: SNAPSHOT, FONT_DIR and XDPVER must be set _before_ the inherit. |
|
|
29 | # |
|
|
30 | # If you want to install to a non-default prefix (e.g., /opt/xorg), change |
|
|
31 | # XDIR. This has not been recently tested. You may need to uncomment the |
|
|
32 | # setting of datadir and mandir in x-modular_src_install() or add it back in if |
|
|
33 | # it's no longer there. You may also want to change the SLOT. |
25 | # |
34 | # |
26 | # Pretty much everything else should be automatic. |
35 | # Pretty much everything else should be automatic. |
27 | |
|
|
28 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
|
|
29 | |
|
|
30 | inherit eutils libtool toolchain-funcs flag-o-matic autotools |
|
|
31 | |
36 | |
32 | # Directory prefix to use for everything |
37 | # Directory prefix to use for everything |
33 | XDIR="/usr" |
38 | XDIR="/usr" |
34 | |
39 | |
35 | # Set up default patchset version(s) if necessary |
40 | # Set up default patchset version(s) if necessary |
… | |
… | |
39 | fi |
44 | fi |
40 | |
45 | |
41 | IUSE="" |
46 | IUSE="" |
42 | HOMEPAGE="http://xorg.freedesktop.org/" |
47 | HOMEPAGE="http://xorg.freedesktop.org/" |
43 | |
48 | |
|
|
49 | if [[ ${PV} = 9999* ]]; then |
|
|
50 | GIT_ECLASS="git" |
|
|
51 | SNAPSHOT="yes" |
|
|
52 | SRC_URI="" |
|
|
53 | fi |
|
|
54 | |
44 | # Set up SRC_URI for individual modular releases |
55 | # Set up SRC_URI for individual modular releases |
45 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
56 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
46 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then |
57 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then |
47 | SRC_URI="${SRC_URI} |
58 | MODULE="app" |
48 | ${BASE_INDIVIDUAL_URI}/app/${P}.tar.bz2" |
|
|
49 | elif [[ ${CATEGORY} = app-doc ]]; then |
59 | elif [[ ${CATEGORY} = app-doc ]]; then |
50 | SRC_URI="${SRC_URI} |
60 | MODULE="doc" |
51 | ${BASE_INDIVIDUAL_URI}/doc/${P}.tar.bz2" |
|
|
52 | # x11-misc contains data and util, x11-themes contains data |
61 | # x11-misc contains data and util, x11-themes contains data |
53 | elif [[ ${CATEGORY} = x11-misc ]] || [[ ${CATEGORY} = x11-themes ]]; then |
62 | elif [[ ${CATEGORY} = x11-misc ]] || [[ ${CATEGORY} = x11-themes ]]; then |
54 | SRC_URI="${SRC_URI} |
63 | if [[ ${PN} == xbitmaps || ${PN} == xcursor-themes || ${PN} == xkbdata ]]; then |
55 | ${BASE_INDIVIDUAL_URI}/data/${P}.tar.bz2 |
64 | MODULE="data" |
56 | ${BASE_INDIVIDUAL_URI}/util/${P}.tar.bz2" |
65 | else |
|
|
66 | MODULE="data" |
|
|
67 | fi |
57 | elif [[ ${CATEGORY} = x11-drivers ]]; then |
68 | elif [[ ${CATEGORY} = x11-drivers ]]; then |
58 | SRC_URI="${SRC_URI} |
69 | MODULE="driver" |
59 | ${BASE_INDIVIDUAL_URI}/driver/${P}.tar.bz2" |
|
|
60 | elif [[ ${CATEGORY} = media-fonts ]]; then |
70 | elif [[ ${CATEGORY} = media-fonts ]]; then |
61 | SRC_URI="${SRC_URI} |
71 | MODULE="font" |
62 | ${BASE_INDIVIDUAL_URI}/font/${P}.tar.bz2" |
|
|
63 | elif [[ ${CATEGORY} = x11-libs ]]; then |
72 | elif [[ ${CATEGORY} = x11-libs ]]; then |
64 | SRC_URI="${SRC_URI} |
73 | MODULE="lib" |
65 | ${BASE_INDIVIDUAL_URI}/lib/${P}.tar.bz2" |
|
|
66 | elif [[ ${CATEGORY} = x11-proto ]]; then |
74 | elif [[ ${CATEGORY} = x11-proto ]]; then |
67 | SRC_URI="${SRC_URI} |
75 | MODULE="proto" |
68 | ${BASE_INDIVIDUAL_URI}/proto/${P}.tar.bz2" |
|
|
69 | elif [[ ${CATEGORY} = x11-base ]]; then |
76 | elif [[ ${CATEGORY} = x11-base ]]; then |
70 | SRC_URI="${SRC_URI} |
77 | MODULE="xserver" |
71 | ${BASE_INDIVIDUAL_URI}/xserver/${P}.tar.bz2" |
78 | fi |
|
|
79 | |
|
|
80 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
81 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${MODULE}/${PN}" |
|
|
82 | else |
|
|
83 | SRC_URI="${SRC_URI} ${BASE_INDIVIDUAL_URI}/${MODULE}/${P}.tar.bz2" |
72 | fi |
84 | fi |
73 | |
85 | |
74 | SLOT="0" |
86 | SLOT="0" |
75 | |
87 | |
76 | # Set the license for the package. This can be overridden by setting |
88 | # Set the license for the package. This can be overridden by setting |
… | |
… | |
79 | |
91 | |
80 | # Set up shared dependencies |
92 | # Set up shared dependencies |
81 | if [[ -n "${SNAPSHOT}" ]]; then |
93 | if [[ -n "${SNAPSHOT}" ]]; then |
82 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
94 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
83 | DEPEND="${DEPEND} |
95 | DEPEND="${DEPEND} |
84 | >=sys-devel/autoconf-2.57 |
|
|
85 | >=sys-devel/automake-1.7 |
|
|
86 | >=sys-devel/libtool-1.5 |
96 | >=sys-devel/libtool-1.5 |
87 | >=sys-devel/m4-1.4" |
97 | >=sys-devel/m4-1.4" |
|
|
98 | WANT_AUTOCONF="latest" |
|
|
99 | WANT_AUTOMAKE="latest" |
88 | fi |
100 | fi |
89 | |
101 | |
90 | # If we're a font package, but not the font.alias one |
102 | # If we're a font package, but not the font.alias one |
|
|
103 | FONT_ECLASS="" |
91 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
104 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
92 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
105 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
93 | && [[ "${PN}" != "font-alias" ]] \ |
106 | && [[ "${PN}" != "font-alias" ]] \ |
94 | && [[ "${PN}" != "font-util" ]]; then |
107 | && [[ "${PN}" != "font-util" ]]; then |
95 | # Activate font code in the rest of the eclass |
108 | # Activate font code in the rest of the eclass |
96 | FONT="yes" |
109 | FONT="yes" |
97 | |
110 | |
|
|
111 | # Whether to inherit the font eclass |
|
|
112 | FONT_ECLASS="font" |
|
|
113 | |
98 | RDEPEND="${RDEPEND} |
114 | RDEPEND="${RDEPEND} |
99 | media-fonts/encodings |
115 | media-fonts/encodings |
100 | x11-apps/mkfontscale |
116 | x11-apps/mkfontscale |
101 | x11-apps/mkfontdir" |
117 | x11-apps/mkfontdir" |
102 | PDEPEND="${PDEPEND} |
118 | PDEPEND="${PDEPEND} |
… | |
… | |
130 | # If we're a driver package |
146 | # If we're a driver package |
131 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
147 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
132 | # Enable driver code in the rest of the eclass |
148 | # Enable driver code in the rest of the eclass |
133 | DRIVER="yes" |
149 | DRIVER="yes" |
134 | |
150 | |
|
|
151 | if [[ ${XDPVER} != -1 ]]; then |
135 | # Add driver patchset to SRC_URI |
152 | # Add driver patchset to SRC_URI |
136 | SRC_URI="${SRC_URI} |
153 | SRC_URI="${SRC_URI} |
137 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
154 | mirror://gentoo/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
155 | fi |
138 | fi |
156 | fi |
139 | |
157 | |
140 | # Debugging -- ignore packages that can't be built with debugging |
158 | # Debugging -- ignore packages that can't be built with debugging |
141 | if [[ -z "${FONT}" ]] \ |
159 | if [[ -z "${FONT}" ]] \ |
142 | || [[ "${PN/app-doc}" != "${PN}" ]] \ |
160 | && [[ "${CATEGORY/app-doc}" = "${CATEGORY}" ]] \ |
143 | || [[ "${PN/x11-proto}" != "${PN}" ]] \ |
161 | && [[ "${CATEGORY/x11-proto}" = "${CATEGORY}" ]] \ |
144 | || [[ "${PN/util-macros}" != "${PN}" ]] \ |
162 | && [[ "${PN/util-macros}" = "${PN}" ]] \ |
145 | || [[ "${PN/xbitmaps}" != "${PN}" ]] \ |
163 | && [[ "${PN/xbitmaps}" = "${PN}" ]] \ |
146 | || [[ "${PN/xkbdata}" != "${PN}" ]] \ |
164 | && [[ "${PN/xkbdata}" = "${PN}" ]] \ |
147 | || [[ "${PN/xorg-cf-files}" != "${PN}" ]] \ |
165 | && [[ "${PN/xorg-cf-files}" = "${PN}" ]] \ |
148 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
166 | && [[ "${PN/xcursor}" = "${PN}" ]] \ |
149 | ; then |
167 | ; then |
150 | DEBUGGABLE="yes" |
168 | DEBUGGABLE="yes" |
151 | IUSE="${IUSE} debug" |
169 | IUSE="${IUSE} debug" |
152 | if use debug; then |
|
|
153 | if ! has splitdebug ${FEATURES}; then |
|
|
154 | RESTRICT="${RESTRICT} nostrip" |
|
|
155 | fi |
|
|
156 | fi |
|
|
157 | fi |
170 | fi |
158 | |
171 | |
159 | DEPEND="${DEPEND} |
172 | DEPEND="${DEPEND} |
160 | >=dev-util/pkgconfig-0.18" |
173 | >=dev-util/pkgconfig-0.18" |
161 | |
174 | |
162 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
175 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
163 | DEPEND="${DEPEND} |
176 | DEPEND="${DEPEND} |
164 | >=x11-misc/util-macros-0.99.2" |
177 | >=x11-misc/util-macros-0.99.2 |
|
|
178 | >=sys-devel/binutils-2.16.1-r3" |
165 | fi |
179 | fi |
166 | |
180 | |
167 | RDEPEND="${RDEPEND} |
181 | RDEPEND="${RDEPEND} |
168 | !<=x11-base/xorg-x11-6.9" |
182 | !<=x11-base/xorg-x11-6.9" |
169 | # Provides virtual/x11 for temporary use until packages are ported |
183 | # Provides virtual/x11 for temporary use until packages are ported |
170 | # x11-base/x11-env" |
184 | # x11-base/x11-env" |
171 | |
185 | |
|
|
186 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
|
|
187 | ${FONT_ECLASS} ${GIT_ECLASS} |
|
|
188 | |
172 | x-modular_specs_check() { |
189 | x-modular_specs_check() { |
173 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
190 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
174 | if gcc-specs-now; then |
191 | append-ldflags -Wl,-z,lazy |
175 | msg="${PN} does not work with hardened gcc specs. Switch to vanilla gcc specs to emerge ${PN}." |
|
|
176 | eerror "$msg" |
|
|
177 | die "$msg" |
|
|
178 | fi |
|
|
179 | |
|
|
180 | # (#116698) breaks loading |
192 | # (#116698) breaks loading |
181 | filter-ldflags -Wl,-z,now |
193 | filter-ldflags -Wl,-z,now |
182 | fi |
194 | fi |
183 | } |
195 | } |
184 | |
196 | |
… | |
… | |
193 | fi |
205 | fi |
194 | fi |
206 | fi |
195 | fi |
207 | fi |
196 | } |
208 | } |
197 | |
209 | |
|
|
210 | x-modular_server_supports_drivers_check() { |
|
|
211 | # (#135873) Only certain servers will actually use or be capable of |
|
|
212 | # building external drivers, including binary drivers. |
|
|
213 | if [[ -n "${DRIVER}" ]]; then |
|
|
214 | if has_version '>=x11-base/xorg-server-1.1'; then |
|
|
215 | if ! built_with_use x11-base/xorg-server xorg; then |
|
|
216 | eerror "x11-base/xorg-server is not built with support for external drivers." |
|
|
217 | die "You must build x11-base/xorg-server with USE=xorg." |
|
|
218 | fi |
|
|
219 | fi |
|
|
220 | fi |
|
|
221 | } |
|
|
222 | |
198 | x-modular_unpack_source() { |
223 | x-modular_unpack_source() { |
|
|
224 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
225 | git_src_unpack |
|
|
226 | else |
199 | unpack ${A} |
227 | unpack ${A} |
|
|
228 | fi |
200 | cd ${S} |
229 | cd ${S} |
201 | |
230 | |
202 | if [[ -n ${FONT_OPTIONS} ]]; then |
231 | if [[ -n ${FONT_OPTIONS} ]]; then |
203 | einfo "Detected font directory: ${FONT_DIR}" |
232 | einfo "Detected font directory: ${FONT_DIR}" |
204 | fi |
233 | fi |
… | |
… | |
213 | fi |
242 | fi |
214 | |
243 | |
215 | # If this is a driver package we need to fix man page install location. |
244 | # If this is a driver package we need to fix man page install location. |
216 | # Running autoreconf will use the patched util-macros to make the |
245 | # Running autoreconf will use the patched util-macros to make the |
217 | # change for us, so we only need to patch if it is not going to run. |
246 | # change for us, so we only need to patch if it is not going to run. |
218 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]; then |
247 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]\ |
|
|
248 | && [[ ${XDPVER} != -1 ]]; then |
219 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
249 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
220 | fi |
250 | fi |
221 | |
251 | |
222 | # For specific list of patches |
252 | # For specific list of patches |
223 | if [[ -n "${PATCHES}" ]] ; then |
253 | if [[ -n "${PATCHES}" ]] ; then |
… | |
… | |
237 | x-modular_reconf_source() { |
267 | x-modular_reconf_source() { |
238 | # Run autoreconf for CVS snapshots only |
268 | # Run autoreconf for CVS snapshots only |
239 | if [[ "${SNAPSHOT}" = "yes" ]] |
269 | if [[ "${SNAPSHOT}" = "yes" ]] |
240 | then |
270 | then |
241 | # If possible, generate configure if it doesn't exist |
271 | # If possible, generate configure if it doesn't exist |
242 | if [ -f "${S}/configure.ac" ] |
272 | if [ -f "./configure.ac" ] |
243 | then |
273 | then |
244 | eautoreconf |
274 | eautoreconf |
245 | fi |
275 | fi |
246 | fi |
276 | fi |
247 | |
277 | |
… | |
… | |
250 | elibtoolize |
280 | elibtoolize |
251 | } |
281 | } |
252 | |
282 | |
253 | x-modular_src_unpack() { |
283 | x-modular_src_unpack() { |
254 | x-modular_specs_check |
284 | x-modular_specs_check |
|
|
285 | x-modular_server_supports_drivers_check |
255 | x-modular_dri_check |
286 | x-modular_dri_check |
256 | x-modular_unpack_source |
287 | x-modular_unpack_source |
257 | x-modular_patch_source |
288 | x-modular_patch_source |
258 | x-modular_reconf_source |
289 | x-modular_reconf_source |
259 | } |
290 | } |
… | |
… | |
297 | x-modular_src_configure() { |
328 | x-modular_src_configure() { |
298 | x-modular_font_configure |
329 | x-modular_font_configure |
299 | x-modular_debug_setup |
330 | x-modular_debug_setup |
300 | |
331 | |
301 | # If prefix isn't set here, .pc files cause problems |
332 | # If prefix isn't set here, .pc files cause problems |
302 | if [[ -x ./configure ]]; then |
333 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
303 | econf --prefix=${XDIR} \ |
334 | econf --prefix=${XDIR} \ |
304 | --datadir=${XDIR}/share \ |
335 | --datadir=${XDIR}/share \ |
305 | ${FONT_OPTIONS} \ |
336 | ${FONT_OPTIONS} \ |
306 | ${DRIVER_OPTIONS} \ |
337 | ${DRIVER_OPTIONS} \ |
307 | ${CONFIGURE_OPTIONS} |
338 | ${CONFIGURE_OPTIONS} |
… | |
… | |
325 | # Shouldn't be necessary in XDIR=/usr |
356 | # Shouldn't be necessary in XDIR=/usr |
326 | # einstall forces datadir, so we need to re-force it |
357 | # einstall forces datadir, so we need to re-force it |
327 | # datadir=${XDIR}/share \ |
358 | # datadir=${XDIR}/share \ |
328 | # mandir=${XDIR}/share/man \ |
359 | # mandir=${XDIR}/share/man \ |
329 | |
360 | |
|
|
361 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
362 | pushd "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
|
|
363 | git log ${GIT_TREE} > "${S}"/ChangeLog |
|
|
364 | popd |
|
|
365 | fi |
|
|
366 | |
330 | if [[ -e ${S}/ChangeLog ]]; then |
367 | if [[ -e ${S}/ChangeLog ]]; then |
331 | dodoc ${S}/ChangeLog |
368 | dodoc ${S}/ChangeLog |
332 | fi |
369 | fi |
|
|
370 | [[ -n $DOCS ]] && dodoc $DOCS |
333 | |
371 | |
334 | # Make sure docs get compressed |
372 | # Make sure docs get compressed |
335 | prepalldocs |
373 | prepalldocs |
336 | |
374 | |
337 | # Don't install libtool archives for server modules |
375 | # Don't install libtool archives for server modules |
338 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
376 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
339 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
377 | find ${D}/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
340 | | xargs rm -f |
378 | | xargs rm -f |
341 | fi |
379 | fi |
342 | |
380 | |
343 | # Don't install overlapping fonts.* files |
381 | # Don't install overlapping fonts.* files |
344 | # Generate them instead when possible |
382 | # Generate them instead when possible |
345 | if [[ -n "${FONT}" ]]; then |
383 | if [[ -n "${FONT}" ]]; then |
346 | remove_font_metadata |
384 | remove_font_metadata |
347 | fi |
385 | fi |
|
|
386 | |
|
|
387 | if [[ -n "${DRIVER}" ]]; then |
|
|
388 | install_driver_hwdata |
|
|
389 | fi |
348 | } |
390 | } |
349 | |
391 | |
350 | x-modular_pkg_preinst() { |
392 | x-modular_pkg_preinst() { |
351 | if [[ -n "${FONT}" ]]; then |
393 | # We no longer do anything here, but we can't remove it from the API |
352 | discover_font_dirs |
394 | : |
353 | fi |
|
|
354 | } |
395 | } |
355 | |
396 | |
356 | x-modular_pkg_postinst() { |
397 | x-modular_pkg_postinst() { |
357 | if [[ -n "${FONT}" ]]; then |
398 | if [[ -n "${FONT}" ]]; then |
358 | setup_fonts |
399 | setup_fonts |
… | |
… | |
360 | } |
401 | } |
361 | |
402 | |
362 | x-modular_pkg_postrm() { |
403 | x-modular_pkg_postrm() { |
363 | if [[ -n "${FONT}" ]]; then |
404 | if [[ -n "${FONT}" ]]; then |
364 | cleanup_fonts |
405 | cleanup_fonts |
|
|
406 | font_pkg_postrm |
365 | fi |
407 | fi |
366 | } |
408 | } |
367 | |
409 | |
368 | cleanup_fonts() { |
410 | cleanup_fonts() { |
369 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
411 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
… | |
… | |
399 | eend 0 |
441 | eend 0 |
400 | done |
442 | done |
401 | } |
443 | } |
402 | |
444 | |
403 | setup_fonts() { |
445 | setup_fonts() { |
404 | if [[ ! -n "${FONT_DIRS}" ]]; then |
446 | if [[ ! -n "${FONT_DIR}" ]]; then |
405 | msg="FONT_DIRS is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
447 | msg="FONT_DIR is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
406 | eerror "${msg}" |
448 | eerror "${msg}" |
407 | die "${msg}" |
449 | die "${msg}" |
408 | fi |
450 | fi |
409 | |
451 | |
410 | create_fonts_scale |
452 | create_fonts_scale |
… | |
… | |
423 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
465 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
424 | fi |
466 | fi |
425 | done |
467 | done |
426 | } |
468 | } |
427 | |
469 | |
|
|
470 | # Installs device-to-driver mappings for system-config-display |
|
|
471 | # and anything else that uses hwdata |
|
|
472 | install_driver_hwdata() { |
|
|
473 | insinto /usr/share/hwdata/videoaliases |
|
|
474 | for i in "${FILESDIR}"/*.xinf; do |
|
|
475 | # We need this for the case when none exist, |
|
|
476 | # so *.xinf doesn't expand |
|
|
477 | if [[ -e $i ]]; then |
|
|
478 | doins $i |
|
|
479 | fi |
|
|
480 | done |
|
|
481 | } |
|
|
482 | |
428 | discover_font_dirs() { |
483 | discover_font_dirs() { |
429 | pushd ${IMAGE}/usr/share/fonts |
484 | FONT_DIRS="${FONT_DIR}" |
430 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
|
|
431 | FONT_DIRS="$(echo ${FONT_DIRS} | sed -e 's:./::g')" |
|
|
432 | popd |
|
|
433 | } |
485 | } |
434 | |
486 | |
435 | create_fonts_scale() { |
487 | create_fonts_scale() { |
436 | ebegin "Creating fonts.scale files" |
488 | ebegin "Creating fonts.scale files" |
437 | local x |
489 | local x |
438 | for FONT_DIR in ${FONT_DIRS}; do |
490 | for DIR in ${FONT_DIR}; do |
439 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
491 | x=${ROOT}/usr/share/fonts/${DIR} |
440 | [[ -z "$(ls ${x}/)" ]] && continue |
492 | [[ -z "$(ls ${x}/)" ]] && continue |
441 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
493 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
442 | |
494 | |
443 | # Only generate .scale files if truetype, opentype or type1 |
495 | # Only generate .scale files if truetype, opentype or type1 |
444 | # fonts are present ... |
496 | # fonts are present ... |
445 | |
497 | |
446 | # First truetype (ttf,ttc) |
|
|
447 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
|
|
448 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
498 | # NOTE: There is no way to regenerate Speedo/CID fonts.scale |
449 | # <spyderous@gentoo.org> 2 August 2004 |
499 | # <dberkholz@gentoo.org> 2 August 2004 |
450 | if [[ "${x/encodings}" = "${x}" ]] \ |
500 | if [[ "${x/encodings}" = "${x}" ]] \ |
451 | && [[ -n "$(find ${x} -iname '*.tt[cf]' -print)" ]]; then |
|
|
452 | if [[ -x ${ROOT}/usr/bin/ttmkfdir ]]; then |
|
|
453 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
|
|
454 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
|
|
455 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
|
|
456 | -o ${x}/fonts.scale -d ${x} |
|
|
457 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
|
|
458 | local ttmkfdir_return=$? |
|
|
459 | else |
|
|
460 | # We didn't use ttmkfdir at all |
|
|
461 | local ttmkfdir_return=2 |
|
|
462 | fi |
|
|
463 | if [[ ${ttmkfdir_return} -ne 0 ]]; then |
|
|
464 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
|
|
465 | ${ROOT}/usr/bin/mkfontscale \ |
|
|
466 | -a /usr/share/fonts/encodings/encodings.dir \ |
|
|
467 | -- ${x} |
|
|
468 | fi |
|
|
469 | # Next type1 and opentype (pfa,pfb,otf,otc) |
|
|
470 | elif [[ "${x/encodings}" = "${x}" ]] \ |
|
|
471 | && [[ -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]]; then |
501 | && [[ -n "$(find ${x} -iname '*.[pot][ft][abcf]' -print)" ]]; then |
472 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
502 | mkfontscale \ |
473 | ${ROOT}/usr/bin/mkfontscale \ |
|
|
474 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
503 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
475 | -- ${x} |
504 | -- ${x} |
476 | fi |
505 | fi |
477 | done |
506 | done |
478 | eend 0 |
507 | eend 0 |
479 | } |
508 | } |
480 | |
509 | |
481 | create_fonts_dir() { |
510 | create_fonts_dir() { |
482 | ebegin "Generating fonts.dir files" |
511 | ebegin "Generating fonts.dir files" |
483 | for FONT_DIR in ${FONT_DIRS}; do |
512 | for DIR in ${FONT_DIR}; do |
484 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
513 | x=${ROOT}/usr/share/fonts/${DIR} |
485 | [[ -z "$(ls ${x}/)" ]] && continue |
514 | [[ -z "$(ls ${x}/)" ]] && continue |
486 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
515 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
487 | |
516 | |
488 | if [[ "${x/encodings}" = "${x}" ]]; then |
517 | if [[ "${x/encodings}" = "${x}" ]]; then |
489 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
518 | mkfontdir \ |
490 | ${ROOT}/usr/bin/mkfontdir \ |
|
|
491 | -e ${ROOT}/usr/share/fonts/encodings \ |
519 | -e ${ROOT}/usr/share/fonts/encodings \ |
492 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
520 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
493 | -- ${x} |
521 | -- ${x} |
494 | fi |
522 | fi |
495 | done |
523 | done |
496 | eend 0 |
524 | eend 0 |
497 | } |
525 | } |
498 | |
526 | |
499 | fix_font_permissions() { |
527 | fix_font_permissions() { |
500 | ebegin "Fixing permissions" |
528 | ebegin "Fixing permissions" |
501 | for FONT_DIR in ${FONT_DIRS}; do |
529 | for DIR in ${FONT_DIR}; do |
502 | find ${ROOT}/usr/share/fonts/${FONT_DIR} -type f -name 'font.*' \ |
530 | find ${ROOT}/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
503 | -exec chmod 0644 {} \; |
531 | -exec chmod 0644 {} \; |
504 | done |
532 | done |
505 | eend 0 |
533 | eend 0 |
506 | } |
534 | } |
507 | |
535 | |
508 | create_font_cache() { |
536 | create_font_cache() { |
509 | # danarmak found out that fc-cache should be run AFTER all the above |
537 | font_pkg_postinst |
510 | # stuff, as otherwise the cache is invalid, and has to be run again |
|
|
511 | # as root anyway |
|
|
512 | if [[ -x ${ROOT}/usr/bin/fc-cache ]]; then |
|
|
513 | ebegin "Creating FC font cache" |
|
|
514 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
|
|
515 | eend 0 |
|
|
516 | fi |
|
|
517 | } |
538 | } |
|
|
539 | |
|
|
540 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |