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