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