| 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.2 2005/08/11 06:19:16 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.77 2006/10/30 05:44:33 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 | |
|
|
90 | # If we're a font package, but not the font.alias one |
|
|
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 | |
|
|
98 | RDEPEND="${RDEPEND} |
|
|
99 | media-fonts/encodings |
|
|
100 | x11-apps/mkfontscale |
|
|
101 | x11-apps/mkfontdir" |
|
|
102 | PDEPEND="${PDEPEND} |
|
|
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 |
|
|
159 | fi |
|
|
160 | |
| 37 | DEPEND="${DEPEND} |
161 | DEPEND="${DEPEND} |
| 38 | dev-util/pkgconfig |
162 | >=dev-util/pkgconfig-0.18" |
|
|
163 | |
|
|
164 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
|
|
165 | DEPEND="${DEPEND} |
| 39 | x11-misc/util-macros" |
166 | >=x11-misc/util-macros-0.99.2 |
|
|
167 | >=sys-devel/binutils-2.16.1-r3" |
|
|
168 | fi |
| 40 | |
169 | |
| 41 | RDEPEND="${RDEPEND}" |
170 | RDEPEND="${RDEPEND} |
| 42 | # 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 |
| 43 | # x11-base/x11-env" |
174 | # x11-base/x11-env" |
| 44 | # FIXME: Uncomment once it's in portage |
175 | |
| 45 | # !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 | } |
| 46 | |
209 | |
| 47 | x-modular_unpack_source() { |
210 | x-modular_unpack_source() { |
| 48 | unpack ${A} |
211 | unpack ${A} |
| 49 | cd ${S} |
212 | cd ${S} |
|
|
213 | |
|
|
214 | if [[ -n ${FONT_OPTIONS} ]]; then |
|
|
215 | einfo "Detected font directory: ${FONT_DIR}" |
|
|
216 | fi |
| 50 | } |
217 | } |
| 51 | |
218 | |
| 52 | x-modular_patch_source() { |
219 | x-modular_patch_source() { |
| 53 | # Use standardized names and locations with bulk patching |
220 | # Use standardized names and locations with bulk patching |
| 54 | # Patch directory is ${WORKDIR}/patch |
221 | # Patch directory is ${WORKDIR}/patch |
| 55 | # See epatch() in eutils.eclass for more documentation |
222 | # See epatch() in eutils.eclass for more documentation |
| 56 | if [ -z "${EPATCH_SUFFIX}" ] ; then |
223 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
| 57 | EPATCH_SUFFIX="patch" |
224 | EPATCH_SUFFIX="patch" |
| 58 | fi |
225 | fi |
| 59 | |
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 | |
| 60 | # For specific list of patches |
235 | # For specific list of patches |
| 61 | if [ -n "${PATCHES}" ] ; then |
236 | if [[ -n "${PATCHES}" ]] ; then |
| 62 | for PATCH in ${PATCHES} |
237 | for PATCH in ${PATCHES} |
| 63 | do |
238 | do |
| 64 | epatch ${PATCH} |
239 | epatch ${PATCH} |
| 65 | done |
240 | done |
| 66 | # For non-default directory bulk patching |
241 | # For non-default directory bulk patching |
| 67 | elif [ -n "${PATCH_LOC}" ] ; then |
242 | elif [[ -n "${PATCH_LOC}" ]] ; then |
| 68 | epatch ${PATCH_LOC} |
243 | epatch ${PATCH_LOC} |
| 69 | # For standard bulk patching |
244 | # For standard bulk patching |
| 70 | elif [ -d "${EPATCH_SOURCE}" ] ; then |
245 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
| 71 | epatch |
246 | epatch |
| 72 | fi |
247 | fi |
| 73 | } |
248 | } |
| 74 | |
249 | |
| 75 | x-modular_reconf_source() { |
250 | x-modular_reconf_source() { |
| 76 | # Run autoreconf for CVS snapshots only |
251 | # Run autoreconf for CVS snapshots only |
| 77 | if [ "${SNAPSHOT}" = "yes" ] |
252 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 78 | then |
253 | then |
| 79 | # If possible, generate configure if it doesn't exist |
254 | # If possible, generate configure if it doesn't exist |
| 80 | if [ -f "${S}/configure.ac" ] |
255 | if [ -f "./configure.ac" ] |
| 81 | then |
256 | then |
| 82 | einfo "Running autoreconf..." |
257 | eautoreconf |
| 83 | autoreconf -v --install |
|
|
| 84 | fi |
|
|
| 85 | fi |
258 | fi |
|
|
259 | fi |
| 86 | |
260 | |
|
|
261 | # Joshua Baergen - October 23, 2005 |
|
|
262 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
263 | elibtoolize |
| 87 | } |
264 | } |
| 88 | |
265 | |
| 89 | 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 |
| 90 | x-modular_unpack_source |
270 | x-modular_unpack_source |
| 91 | x-modular_patch_source |
271 | x-modular_patch_source |
| 92 | x-modular_reconf_source |
272 | x-modular_reconf_source |
| 93 | } |
273 | } |
| 94 | |
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 | |
| 95 | x-modular_src_compile() { |
311 | x-modular_src_configure() { |
|
|
312 | x-modular_font_configure |
|
|
313 | x-modular_debug_setup |
|
|
314 | |
| 96 | # If prefix isn't set here, .pc files cause problems |
315 | # If prefix isn't set here, .pc files cause problems |
| 97 | if [ -x ./configure ]; then |
316 | if [[ -x ./configure ]]; then |
| 98 | econf --prefix=${XDIR} \ |
317 | econf --prefix=${XDIR} \ |
| 99 | --datadir=${XDIR}/share \ |
318 | --datadir=${XDIR}/share \ |
|
|
319 | ${FONT_OPTIONS} \ |
|
|
320 | ${DRIVER_OPTIONS} \ |
| 100 | ${CONFIGURE_OPTIONS} |
321 | ${CONFIGURE_OPTIONS} |
| 101 | fi |
322 | fi |
|
|
323 | } |
|
|
324 | |
|
|
325 | x-modular_src_make() { |
| 102 | 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 |
| 103 | } |
332 | } |
| 104 | |
333 | |
| 105 | x-modular_src_install() { |
334 | x-modular_src_install() { |
| 106 | # Install everything to ${XDIR} |
335 | # Install everything to ${XDIR} |
| 107 | make \ |
336 | make \ |
| … | |
… | |
| 109 | install |
338 | install |
| 110 | # Shouldn't be necessary in XDIR=/usr |
339 | # Shouldn't be necessary in XDIR=/usr |
| 111 | # einstall forces datadir, so we need to re-force it |
340 | # einstall forces datadir, so we need to re-force it |
| 112 | # datadir=${XDIR}/share \ |
341 | # datadir=${XDIR}/share \ |
| 113 | # 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 | # We no longer do anything here, but we can't remove it from the API |
|
|
370 | : |
| 114 | } |
371 | } |
| 115 | |
372 | |
| 116 | x-modular_pkg_postinst() { |
373 | x-modular_pkg_postinst() { |
| 117 | if [[ -n "${FONT}" ]]; then |
374 | if [[ -n "${FONT}" ]]; then |
| 118 | setup_fonts |
375 | setup_fonts |
| 119 | fi |
376 | fi |
| 120 | } |
377 | } |
| 121 | |
378 | |
|
|
379 | x-modular_pkg_postrm() { |
|
|
380 | if [[ -n "${FONT}" ]]; then |
|
|
381 | cleanup_fonts |
|
|
382 | fi |
|
|
383 | } |
|
|
384 | |
|
|
385 | cleanup_fonts() { |
|
|
386 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
|
|
387 | for DIR in ${FONT_DIR}; do |
|
|
388 | unset KEEP_FONTDIR |
|
|
389 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
|
|
390 | |
|
|
391 | ebegin "Checking ${REAL_DIR} for useless files" |
|
|
392 | pushd ${REAL_DIR} &> /dev/null |
|
|
393 | for FILE in *; do |
|
|
394 | unset MATCH |
|
|
395 | for ALLOWED_FILE in ${ALLOWED_FILES}; do |
|
|
396 | if [[ ${FILE} = ${ALLOWED_FILE} ]]; then |
|
|
397 | # If it's allowed, then move on to the next file |
|
|
398 | MATCH="yes" |
|
|
399 | break |
|
|
400 | fi |
|
|
401 | done |
|
|
402 | # If we found a match in allowed files, move on to the next file |
|
|
403 | if [[ -n ${MATCH} ]]; then |
|
|
404 | continue |
|
|
405 | fi |
|
|
406 | # If we get this far, there wasn't a match in the allowed files |
|
|
407 | KEEP_FONTDIR="yes" |
|
|
408 | # We don't need to check more files if we're already keeping it |
|
|
409 | break |
|
|
410 | done |
|
|
411 | popd &> /dev/null |
|
|
412 | # If there are no files worth keeping, then get rid of the dir |
|
|
413 | if [[ -z "${KEEP_FONTDIR}" ]]; then |
|
|
414 | rm -rf ${REAL_DIR} |
|
|
415 | fi |
|
|
416 | eend 0 |
|
|
417 | done |
|
|
418 | } |
|
|
419 | |
| 122 | setup_fonts() { |
420 | setup_fonts() { |
| 123 | if [[ ! -n "${FONT_DIRS}" ]]; then |
421 | if [[ ! -n "${FONT_DIR}" ]]; then |
| 124 | msg="FONT_DIRS empty. Set it to at least one subdir of /usr/share/fonts." |
422 | msg="FONT_DIR is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
| 125 | eerror ${msg} |
423 | eerror "${msg}" |
| 126 | die ${msg} |
424 | die "${msg}" |
| 127 | fi |
425 | fi |
| 128 | |
426 | |
| 129 | create_fonts_scale |
427 | create_fonts_scale |
| 130 | create_fonts_dir |
428 | create_fonts_dir |
| 131 | fix_font_permissions |
429 | fix_font_permissions |
| 132 | create_font_cache |
430 | create_font_cache |
| 133 | } |
431 | } |
| 134 | |
432 | |
|
|
433 | remove_font_metadata() { |
|
|
434 | local DIR |
|
|
435 | for DIR in ${FONT_DIR}; do |
|
|
436 | if [[ "${DIR}" != "Speedo" ]] && \ |
|
|
437 | [[ "${DIR}" != "CID" ]] ; then |
|
|
438 | # Delete font metadata files |
|
|
439 | # fonts.scale, fonts.dir, fonts.cache-1 |
|
|
440 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
|
|
441 | fi |
|
|
442 | done |
|
|
443 | } |
|
|
444 | |
|
|
445 | # Installs device-to-driver mappings for system-config-display |
|
|
446 | # and anything else that uses hwdata |
|
|
447 | install_driver_hwdata() { |
|
|
448 | insinto /usr/share/hwdata/videoaliases |
|
|
449 | for i in "${FILESDIR}"/*.xinf; do |
|
|
450 | # We need this for the case when none exist, |
|
|
451 | # so *.xinf doesn't expand |
|
|
452 | if [[ -e $i ]]; then |
|
|
453 | doins $i |
|
|
454 | fi |
|
|
455 | done |
|
|
456 | } |
|
|
457 | |
|
|
458 | discover_font_dirs() { |
|
|
459 | FONT_DIRS="${FONT_DIR}" |
|
|
460 | } |
|
|
461 | |
| 135 | create_fonts_scale() { |
462 | create_fonts_scale() { |
| 136 | ebegin "Creating fonts.scale files" |
463 | ebegin "Creating fonts.scale files" |
| 137 | local x |
464 | local x |
| 138 | for FONT_DIR in ${FONT_DIRS}; do |
465 | for DIR in ${FONT_DIR}; do |
| 139 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
466 | x=${ROOT}/usr/share/fonts/${DIR} |
| 140 | [ -z "$(ls ${x}/)" ] && continue |
467 | [[ -z "$(ls ${x}/)" ]] && continue |
| 141 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
468 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 142 | |
469 | |
| 143 | # Only generate .scale files if truetype, opentype or type1 |
470 | # Only generate .scale files if truetype, opentype or type1 |
| 144 | # fonts are present ... |
471 | # fonts are present ... |
| 145 | |
472 | |
| 146 | # First truetype (ttf,ttc) |
473 | # First truetype (ttf,ttc) |
| 147 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
474 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
| 148 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
475 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
| 149 | # <spyderous@gentoo.org> 2 August 2004 |
476 | # <spyderous@gentoo.org> 2 August 2004 |
| 150 | if [ "${x/encodings}" = "${x}" -a \ |
477 | if [[ "${x/encodings}" = "${x}" ]] \ |
| 151 | -n "$(find ${x} -iname '*.tt[cf]' -print)" ]; then |
478 | && [[ -n "$(find ${x} -iname '*.tt[cf]' -print)" ]]; then |
| 152 | if [ -x ${ROOT}/usr/bin/ttmkfdir ]; then |
479 | if [[ -x ${ROOT}/usr/bin/ttmkfdir ]]; then |
| 153 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
480 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 154 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
481 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
| 155 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
482 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
| 156 | -o ${x}/fonts.scale -d ${x} |
483 | -o ${x}/fonts.scale -d ${x} |
| 157 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
484 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
| 158 | local ttmkfdir_return=$? |
485 | local ttmkfdir_return=$? |
| 159 | else |
486 | else |
| 160 | # We didn't use ttmkfdir at all |
487 | # We didn't use ttmkfdir at all |
| 161 | local ttmkfdir_return=2 |
488 | local ttmkfdir_return=2 |
| 162 | fi |
489 | fi |
| 163 | if [ ${ttmkfdir_return} -ne 0 ]; then |
490 | if [[ ${ttmkfdir_return} -ne 0 ]]; then |
| 164 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
491 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 165 | ${ROOT}/usr/bin/mkfontscale \ |
492 | ${ROOT}/usr/bin/mkfontscale \ |
| 166 | -a /usr/share/fonts/encodings/encodings.dir \ |
493 | -a /usr/share/fonts/encodings/encodings.dir \ |
| 167 | -- ${x} |
494 | -- ${x} |
| 168 | fi |
495 | fi |
| 169 | # Next type1 and opentype (pfa,pfb,otf,otc) |
496 | # Next type1 and opentype (pfa,pfb,otf,otc) |
| 170 | elif [ "${x/encodings}" = "${x}" -a \ |
497 | elif [[ "${x/encodings}" = "${x}" ]] \ |
| 171 | -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]; then |
498 | && [[ -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]]; then |
| 172 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
499 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 173 | ${ROOT}/usr/bin/mkfontscale \ |
500 | ${ROOT}/usr/bin/mkfontscale \ |
| 174 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
501 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
| 175 | -- ${x} |
502 | -- ${x} |
| 176 | fi |
503 | fi |
| … | |
… | |
| 178 | eend 0 |
505 | eend 0 |
| 179 | } |
506 | } |
| 180 | |
507 | |
| 181 | create_fonts_dir() { |
508 | create_fonts_dir() { |
| 182 | ebegin "Generating fonts.dir files" |
509 | ebegin "Generating fonts.dir files" |
| 183 | for FONT_DIR in ${FONT_DIRS}; do |
510 | for DIR in ${FONT_DIR}; do |
| 184 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
511 | x=${ROOT}/usr/share/fonts/${DIR} |
| 185 | [ -z "$(ls ${x}/)" ] && continue |
512 | [[ -z "$(ls ${x}/)" ]] && continue |
| 186 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
513 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 187 | |
514 | |
| 188 | if [ "${x/encodings}" = "${x}" ]; then |
515 | if [[ "${x/encodings}" = "${x}" ]]; then |
| 189 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
516 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| 190 | ${ROOT}/usr/bin/mkfontdir \ |
517 | ${ROOT}/usr/bin/mkfontdir \ |
| 191 | -e ${ROOT}/usr/share/fonts/encodings \ |
518 | -e ${ROOT}/usr/share/fonts/encodings \ |
| 192 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
519 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
| 193 | -- ${x} |
520 | -- ${x} |
| … | |
… | |
| 196 | eend 0 |
523 | eend 0 |
| 197 | } |
524 | } |
| 198 | |
525 | |
| 199 | fix_font_permissions() { |
526 | fix_font_permissions() { |
| 200 | ebegin "Fixing permissions" |
527 | ebegin "Fixing permissions" |
| 201 | for FONT_DIR in ${FONT_DIRS}; do |
528 | for DIR in ${FONT_DIR}; do |
| 202 | find ${ROOT}/usr/share/fonts/${FONT_DIR} -type f -name 'font.*' \ |
529 | find ${ROOT}/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
| 203 | -exec chmod 0644 {} \; |
530 | -exec chmod 0644 {} \; |
| 204 | done |
531 | done |
| 205 | eend 0 |
532 | eend 0 |
| 206 | } |
533 | } |
| 207 | |
534 | |
| 208 | create_font_cache() { |
535 | create_font_cache() { |
| 209 | # danarmak found out that fc-cache should be run AFTER all the above |
536 | # danarmak found out that fc-cache should be run AFTER all the above |
| 210 | # stuff, as otherwise the cache is invalid, and has to be run again |
537 | # stuff, as otherwise the cache is invalid, and has to be run again |
| 211 | # as root anyway |
538 | # as root anyway |
| 212 | if [ -x ${ROOT}/usr/bin/fc-cache ]; then |
539 | if [[ -x ${ROOT}/usr/bin/fc-cache ]]; then |
| 213 | ebegin "Creating FC font cache" |
540 | ebegin "Creating FC font cache" |
| 214 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
541 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
| 215 | eend 0 |
542 | eend 0 |
| 216 | fi |
543 | fi |
| 217 | } |
544 | } |