| 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.35 2005/12/23 08:28:00 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.78 2006/10/30 05:57:41 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. |
| … | |
… | |
| 23 | # |
23 | # |
| 24 | # IMPORTANT: Both SNAPSHOT and FONT_DIR must be set _before_ the inherit. |
24 | # IMPORTANT: Both SNAPSHOT and FONT_DIR must be set _before_ the inherit. |
| 25 | # |
25 | # |
| 26 | # Pretty much everything else should be automatic. |
26 | # Pretty much everything else should be automatic. |
| 27 | |
27 | |
| 28 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
28 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools font |
| 29 | |
|
|
| 30 | inherit eutils libtool toolchain-funcs |
|
|
| 31 | |
29 | |
| 32 | # Directory prefix to use for everything |
30 | # Directory prefix to use for everything |
| 33 | XDIR="/usr" |
31 | XDIR="/usr" |
| 34 | |
32 | |
| 35 | # Set up default patchset version(s) if necessary |
33 | # Set up default patchset version(s) if necessary |
| … | |
… | |
| 38 | XDPVER="1" |
36 | XDPVER="1" |
| 39 | fi |
37 | fi |
| 40 | |
38 | |
| 41 | IUSE="" |
39 | IUSE="" |
| 42 | HOMEPAGE="http://xorg.freedesktop.org/" |
40 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 43 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0/src/everything/${P}.tar.bz2 |
41 | |
| 44 | http://xorg.freedesktop.org/releases/X11R7.0-RC4/everything/${P}.tar.bz2 |
42 | # Set up SRC_URI for individual modular releases |
| 45 | http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
43 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
| 46 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
44 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then |
| 47 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
45 | SRC_URI="${SRC_URI} |
| 48 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
46 | ${BASE_INDIVIDUAL_URI}/app/${P}.tar.bz2" |
| 49 | LICENSE="X11" |
47 | elif [[ ${CATEGORY} = app-doc ]]; then |
|
|
48 | SRC_URI="${SRC_URI} |
|
|
49 | ${BASE_INDIVIDUAL_URI}/doc/${P}.tar.bz2" |
|
|
50 | # x11-misc contains data and util, x11-themes contains data |
|
|
51 | elif [[ ${CATEGORY} = x11-misc ]] || [[ ${CATEGORY} = x11-themes ]]; then |
|
|
52 | SRC_URI="${SRC_URI} |
|
|
53 | ${BASE_INDIVIDUAL_URI}/data/${P}.tar.bz2 |
|
|
54 | ${BASE_INDIVIDUAL_URI}/util/${P}.tar.bz2" |
|
|
55 | elif [[ ${CATEGORY} = x11-drivers ]]; then |
|
|
56 | SRC_URI="${SRC_URI} |
|
|
57 | ${BASE_INDIVIDUAL_URI}/driver/${P}.tar.bz2" |
|
|
58 | elif [[ ${CATEGORY} = media-fonts ]]; then |
|
|
59 | SRC_URI="${SRC_URI} |
|
|
60 | ${BASE_INDIVIDUAL_URI}/font/${P}.tar.bz2" |
|
|
61 | elif [[ ${CATEGORY} = x11-libs ]]; then |
|
|
62 | SRC_URI="${SRC_URI} |
|
|
63 | ${BASE_INDIVIDUAL_URI}/lib/${P}.tar.bz2" |
|
|
64 | elif [[ ${CATEGORY} = x11-proto ]]; then |
|
|
65 | SRC_URI="${SRC_URI} |
|
|
66 | ${BASE_INDIVIDUAL_URI}/proto/${P}.tar.bz2" |
|
|
67 | elif [[ ${CATEGORY} = x11-base ]]; then |
|
|
68 | SRC_URI="${SRC_URI} |
|
|
69 | ${BASE_INDIVIDUAL_URI}/xserver/${P}.tar.bz2" |
|
|
70 | fi |
|
|
71 | |
| 50 | SLOT="0" |
72 | SLOT="0" |
|
|
73 | |
|
|
74 | # Set the license for the package. This can be overridden by setting |
|
|
75 | # LICENSE after the inherit. |
|
|
76 | LICENSE=${PN} |
| 51 | |
77 | |
| 52 | # Set up shared dependencies |
78 | # Set up shared dependencies |
| 53 | if [[ -n "${SNAPSHOT}" ]]; then |
79 | if [[ -n "${SNAPSHOT}" ]]; then |
| 54 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
80 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 55 | DEPEND="${DEPEND} |
81 | DEPEND="${DEPEND} |
| … | |
… | |
| 59 | >=sys-devel/m4-1.4" |
85 | >=sys-devel/m4-1.4" |
| 60 | fi |
86 | fi |
| 61 | |
87 | |
| 62 | # If we're a font package, but not the font.alias one |
88 | # If we're a font package, but not the font.alias one |
| 63 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
89 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
90 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
| 64 | && [[ "${PN}" != "font-alias" ]] \ |
91 | && [[ "${PN}" != "font-alias" ]] \ |
| 65 | && [[ "${PN}" != "font-util" ]]; then |
92 | && [[ "${PN}" != "font-util" ]]; then |
| 66 | # Activate font code in the rest of the eclass |
93 | # Activate font code in the rest of the eclass |
| 67 | FONT="yes" |
94 | FONT="yes" |
| 68 | |
95 | |
| 69 | RDEPEND="${RDEPEND} |
96 | RDEPEND="${RDEPEND} |
| 70 | media-fonts/encodings" |
97 | media-fonts/encodings |
| 71 | DEPEND="${DEPEND} |
|
|
| 72 | x11-apps/mkfontscale |
98 | x11-apps/mkfontscale |
| 73 | x11-apps/mkfontdir" |
99 | x11-apps/mkfontdir" |
| 74 | PDEPEND="${PDEPEND} |
100 | PDEPEND="${PDEPEND} |
| 75 | media-fonts/font-alias" |
101 | media-fonts/font-alias" |
| 76 | |
102 | |
| … | |
… | |
| 99 | fi |
125 | fi |
| 100 | fi |
126 | fi |
| 101 | |
127 | |
| 102 | # If we're a driver package |
128 | # If we're a driver package |
| 103 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
129 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 104 | # Don't build static driver modules |
|
|
| 105 | DRIVER_OPTIONS="--disable-static" |
|
|
| 106 | |
|
|
| 107 | # Enable driver code in the rest of the eclass |
130 | # Enable driver code in the rest of the eclass |
| 108 | DRIVER="yes" |
131 | DRIVER="yes" |
| 109 | |
132 | |
|
|
133 | if [[ ${XDPVER} != -1 ]]; then |
| 110 | # Add driver patchset to SRC_URI |
134 | # Add driver patchset to SRC_URI |
| 111 | SRC_URI="${SRC_URI} |
135 | SRC_URI="${SRC_URI} |
| 112 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
136 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
137 | fi |
|
|
138 | fi |
|
|
139 | |
|
|
140 | # Debugging -- ignore packages that can't be built with debugging |
|
|
141 | if [[ -z "${FONT}" ]] \ |
|
|
142 | || [[ "${PN/app-doc}" != "${PN}" ]] \ |
|
|
143 | || [[ "${PN/x11-proto}" != "${PN}" ]] \ |
|
|
144 | || [[ "${PN/util-macros}" != "${PN}" ]] \ |
|
|
145 | || [[ "${PN/xbitmaps}" != "${PN}" ]] \ |
|
|
146 | || [[ "${PN/xkbdata}" != "${PN}" ]] \ |
|
|
147 | || [[ "${PN/xorg-cf-files}" != "${PN}" ]] \ |
|
|
148 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
|
|
149 | ; then |
|
|
150 | DEBUGGABLE="yes" |
|
|
151 | IUSE="${IUSE} debug" |
|
|
152 | if use debug; then |
|
|
153 | if ! has splitdebug ${FEATURES}; then |
|
|
154 | RESTRICT="${RESTRICT} nostrip" |
|
|
155 | fi |
|
|
156 | fi |
| 113 | fi |
157 | fi |
| 114 | |
158 | |
| 115 | DEPEND="${DEPEND} |
159 | DEPEND="${DEPEND} |
| 116 | >=dev-util/pkgconfig-0.18 |
160 | >=dev-util/pkgconfig-0.18" |
|
|
161 | |
|
|
162 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
|
|
163 | DEPEND="${DEPEND} |
| 117 | >=x11-misc/util-macros-0.99.2" |
164 | >=x11-misc/util-macros-0.99.2 |
|
|
165 | >=sys-devel/binutils-2.16.1-r3" |
|
|
166 | fi |
| 118 | |
167 | |
| 119 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
|
|
| 120 | RDEPEND="${RDEPEND} |
168 | RDEPEND="${RDEPEND} |
|
|
169 | || ( >=sys-apps/man-1.6b-r2 >=sys-apps/man-db-2.4.3-r1 ) |
| 121 | !<=x11-base/xorg-x11-6.9 |
170 | !<=x11-base/xorg-x11-6.9" |
| 122 | >=sys-apps/man-1.6b-r2" |
|
|
| 123 | # Provides virtual/x11 for temporary use until packages are ported |
171 | # Provides virtual/x11 for temporary use until packages are ported |
| 124 | # x11-base/x11-env" |
172 | # x11-base/x11-env" |
|
|
173 | |
|
|
174 | x-modular_specs_check() { |
|
|
175 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
176 | append-ldflags -Wl,-z,lazy |
|
|
177 | # (#116698) breaks loading |
|
|
178 | filter-ldflags -Wl,-z,now |
|
|
179 | fi |
|
|
180 | } |
|
|
181 | |
|
|
182 | x-modular_dri_check() { |
|
|
183 | # (#120057) Enabling DRI in drivers requires that the server was built with |
|
|
184 | # support for it |
|
|
185 | if [[ -n "${DRIVER}" ]]; then |
|
|
186 | if has dri ${IUSE} && use dri; then |
|
|
187 | einfo "Checking for direct rendering capabilities ..." |
|
|
188 | if ! built_with_use x11-base/xorg-server dri; then |
|
|
189 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
190 | fi |
|
|
191 | fi |
|
|
192 | fi |
|
|
193 | } |
|
|
194 | |
|
|
195 | x-modular_server_supports_drivers_check() { |
|
|
196 | # (#135873) Only certain servers will actually use or be capable of |
|
|
197 | # building external drivers, including binary drivers. |
|
|
198 | if [[ -n "${DRIVER}" ]]; then |
|
|
199 | if has_version '>=x11-base/xorg-server-1.1'; then |
|
|
200 | if ! built_with_use x11-base/xorg-server xorg; then |
|
|
201 | eerror "x11-base/xorg-server is not built with support for external drivers." |
|
|
202 | die "You must build x11-base/xorg-server with USE=xorg." |
|
|
203 | fi |
|
|
204 | fi |
|
|
205 | fi |
|
|
206 | } |
| 125 | |
207 | |
| 126 | x-modular_unpack_source() { |
208 | x-modular_unpack_source() { |
| 127 | unpack ${A} |
209 | unpack ${A} |
| 128 | cd ${S} |
210 | cd ${S} |
| 129 | |
211 | |
| … | |
… | |
| 141 | fi |
223 | fi |
| 142 | |
224 | |
| 143 | # If this is a driver package we need to fix man page install location. |
225 | # If this is a driver package we need to fix man page install location. |
| 144 | # Running autoreconf will use the patched util-macros to make the |
226 | # Running autoreconf will use the patched util-macros to make the |
| 145 | # change for us, so we only need to patch if it is not going to run. |
227 | # change for us, so we only need to patch if it is not going to run. |
| 146 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]; then |
228 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]\ |
|
|
229 | && [[ ${XDPVER} != -1 ]]; then |
| 147 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
230 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
| 148 | fi |
231 | fi |
| 149 | |
232 | |
| 150 | # For specific list of patches |
233 | # For specific list of patches |
| 151 | if [[ -n "${PATCHES}" ]] ; then |
234 | if [[ -n "${PATCHES}" ]] ; then |
| … | |
… | |
| 165 | x-modular_reconf_source() { |
248 | x-modular_reconf_source() { |
| 166 | # Run autoreconf for CVS snapshots only |
249 | # Run autoreconf for CVS snapshots only |
| 167 | if [[ "${SNAPSHOT}" = "yes" ]] |
250 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 168 | then |
251 | then |
| 169 | # If possible, generate configure if it doesn't exist |
252 | # If possible, generate configure if it doesn't exist |
| 170 | if [ -f "${S}/configure.ac" ] |
253 | if [ -f "./configure.ac" ] |
| 171 | then |
254 | then |
| 172 | einfo "Running autoreconf..." |
255 | eautoreconf |
| 173 | autoreconf -v --force --install |
|
|
| 174 | fi |
|
|
| 175 | fi |
256 | fi |
|
|
257 | fi |
| 176 | |
258 | |
|
|
259 | # Joshua Baergen - October 23, 2005 |
|
|
260 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
261 | elibtoolize |
| 177 | } |
262 | } |
| 178 | |
263 | |
| 179 | x-modular_src_unpack() { |
264 | x-modular_src_unpack() { |
| 180 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
265 | x-modular_specs_check |
| 181 | if gcc-specs-now; then |
266 | x-modular_server_supports_drivers_check |
| 182 | msg="Do not emerge ${PN} without vanilla gcc!" |
267 | x-modular_dri_check |
| 183 | eerror "$msg" |
|
|
| 184 | die "$msg" |
|
|
| 185 | fi |
|
|
| 186 | fi |
|
|
| 187 | |
|
|
| 188 | x-modular_unpack_source |
268 | x-modular_unpack_source |
| 189 | x-modular_patch_source |
269 | x-modular_patch_source |
| 190 | x-modular_reconf_source |
270 | x-modular_reconf_source |
| 191 | |
|
|
| 192 | # Joshua Baergen - October 23, 2005 |
|
|
| 193 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
| 194 | elibtoolize |
|
|
| 195 | } |
271 | } |
| 196 | |
272 | |
| 197 | x-modular_font_configure() { |
273 | x-modular_font_configure() { |
| 198 | if [[ -n "${FONT}" ]]; then |
274 | if [[ -n "${FONT}" ]]; then |
| 199 | # Might be worth adding an option to configure your desired font |
275 | # Might be worth adding an option to configure your desired font |
| … | |
… | |
| 219 | --disable-koi8-r" |
295 | --disable-koi8-r" |
| 220 | fi |
296 | fi |
| 221 | fi |
297 | fi |
| 222 | } |
298 | } |
| 223 | |
299 | |
|
|
300 | x-modular_debug_setup() { |
|
|
301 | if [[ -n "${DEBUGGABLE}" ]]; then |
|
|
302 | if use debug; then |
|
|
303 | strip-flags |
|
|
304 | append-flags -g |
|
|
305 | fi |
|
|
306 | fi |
|
|
307 | } |
|
|
308 | |
| 224 | x-modular_src_configure() { |
309 | x-modular_src_configure() { |
| 225 | x-modular_font_configure |
310 | x-modular_font_configure |
|
|
311 | x-modular_debug_setup |
| 226 | |
312 | |
| 227 | # If prefix isn't set here, .pc files cause problems |
313 | # If prefix isn't set here, .pc files cause problems |
| 228 | if [[ -x ./configure ]]; then |
314 | if [[ -x ./configure ]]; then |
| 229 | econf --prefix=${XDIR} \ |
315 | econf --prefix=${XDIR} \ |
| 230 | --datadir=${XDIR}/share \ |
316 | --datadir=${XDIR}/share \ |
| … | |
… | |
| 251 | # Shouldn't be necessary in XDIR=/usr |
337 | # Shouldn't be necessary in XDIR=/usr |
| 252 | # einstall forces datadir, so we need to re-force it |
338 | # einstall forces datadir, so we need to re-force it |
| 253 | # datadir=${XDIR}/share \ |
339 | # datadir=${XDIR}/share \ |
| 254 | # mandir=${XDIR}/share/man \ |
340 | # mandir=${XDIR}/share/man \ |
| 255 | |
341 | |
|
|
342 | if [[ -e ${S}/ChangeLog ]]; then |
|
|
343 | dodoc ${S}/ChangeLog |
|
|
344 | fi |
|
|
345 | |
|
|
346 | # Make sure docs get compressed |
|
|
347 | prepalldocs |
|
|
348 | |
| 256 | # Don't install libtool archives for server modules |
349 | # Don't install libtool archives for server modules |
| 257 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
350 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
| 258 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
351 | find ${D}/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
| 259 | | xargs rm -f |
352 | | xargs rm -f |
| 260 | fi |
353 | fi |
|
|
354 | |
|
|
355 | # Don't install overlapping fonts.* files |
|
|
356 | # Generate them instead when possible |
|
|
357 | if [[ -n "${FONT}" ]]; then |
|
|
358 | remove_font_metadata |
|
|
359 | fi |
|
|
360 | |
|
|
361 | if [[ -n "${DRIVER}" ]]; then |
|
|
362 | install_driver_hwdata |
|
|
363 | fi |
| 261 | } |
364 | } |
| 262 | |
365 | |
| 263 | x-modular_pkg_preinst() { |
366 | x-modular_pkg_preinst() { |
| 264 | if [[ -n "${FONT}" ]]; then |
367 | # We no longer do anything here, but we can't remove it from the API |
| 265 | discover_font_dirs |
368 | : |
| 266 | fi |
|
|
| 267 | } |
369 | } |
| 268 | |
370 | |
| 269 | x-modular_pkg_postinst() { |
371 | x-modular_pkg_postinst() { |
| 270 | if [[ -n "${FONT}" ]]; then |
372 | if [[ -n "${FONT}" ]]; then |
| 271 | setup_fonts |
373 | setup_fonts |
| … | |
… | |
| 273 | } |
375 | } |
| 274 | |
376 | |
| 275 | x-modular_pkg_postrm() { |
377 | x-modular_pkg_postrm() { |
| 276 | if [[ -n "${FONT}" ]]; then |
378 | if [[ -n "${FONT}" ]]; then |
| 277 | cleanup_fonts |
379 | cleanup_fonts |
|
|
380 | font_pkg_postrm |
| 278 | fi |
381 | fi |
| 279 | } |
382 | } |
| 280 | |
383 | |
| 281 | cleanup_fonts() { |
384 | cleanup_fonts() { |
| 282 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
385 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
| … | |
… | |
| 312 | eend 0 |
415 | eend 0 |
| 313 | done |
416 | done |
| 314 | } |
417 | } |
| 315 | |
418 | |
| 316 | setup_fonts() { |
419 | setup_fonts() { |
| 317 | if [[ ! -n "${FONT_DIRS}" ]]; then |
420 | if [[ ! -n "${FONT_DIR}" ]]; then |
| 318 | msg="FONT_DIRS is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
421 | msg="FONT_DIR is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
| 319 | eerror "${msg}" |
422 | eerror "${msg}" |
| 320 | die "${msg}" |
423 | die "${msg}" |
| 321 | fi |
424 | fi |
| 322 | |
425 | |
| 323 | create_fonts_scale |
426 | create_fonts_scale |
| 324 | create_fonts_dir |
427 | create_fonts_dir |
| 325 | fix_font_permissions |
428 | fix_font_permissions |
| 326 | create_font_cache |
429 | create_font_cache |
| 327 | } |
430 | } |
| 328 | |
431 | |
|
|
432 | remove_font_metadata() { |
|
|
433 | local DIR |
|
|
434 | for DIR in ${FONT_DIR}; do |
|
|
435 | if [[ "${DIR}" != "Speedo" ]] && \ |
|
|
436 | [[ "${DIR}" != "CID" ]] ; then |
|
|
437 | # Delete font metadata files |
|
|
438 | # fonts.scale, fonts.dir, fonts.cache-1 |
|
|
439 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
|
|
440 | fi |
|
|
441 | done |
|
|
442 | } |
|
|
443 | |
|
|
444 | # Installs device-to-driver mappings for system-config-display |
|
|
445 | # and anything else that uses hwdata |
|
|
446 | install_driver_hwdata() { |
|
|
447 | insinto /usr/share/hwdata/videoaliases |
|
|
448 | for i in "${FILESDIR}"/*.xinf; do |
|
|
449 | # We need this for the case when none exist, |
|
|
450 | # so *.xinf doesn't expand |
|
|
451 | if [[ -e $i ]]; then |
|
|
452 | doins $i |
|
|
453 | fi |
|
|
454 | done |
|
|
455 | } |
|
|
456 | |
| 329 | discover_font_dirs() { |
457 | discover_font_dirs() { |
| 330 | pushd ${IMAGE}/usr/share/fonts |
458 | FONT_DIRS="${FONT_DIR}" |
| 331 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
|
|
| 332 | FONT_DIRS="$(echo ${FONT_DIRS} | sed -e 's:./::g')" |
|
|
| 333 | popd |
|
|
| 334 | } |
459 | } |
| 335 | |
460 | |
| 336 | create_fonts_scale() { |
461 | create_fonts_scale() { |
| 337 | ebegin "Creating fonts.scale files" |
462 | ebegin "Creating fonts.scale files" |
| 338 | local x |
463 | local x |
| 339 | for FONT_DIR in ${FONT_DIRS}; do |
464 | for DIR in ${FONT_DIR}; do |
| 340 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
465 | x=${ROOT}/usr/share/fonts/${DIR} |
| 341 | [[ -z "$(ls ${x}/)" ]] && continue |
466 | [[ -z "$(ls ${x}/)" ]] && continue |
| 342 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
467 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 343 | |
468 | |
| 344 | # Only generate .scale files if truetype, opentype or type1 |
469 | # Only generate .scale files if truetype, opentype or type1 |
| 345 | # fonts are present ... |
470 | # fonts are present ... |
| … | |
… | |
| 379 | eend 0 |
504 | eend 0 |
| 380 | } |
505 | } |
| 381 | |
506 | |
| 382 | create_fonts_dir() { |
507 | create_fonts_dir() { |
| 383 | ebegin "Generating fonts.dir files" |
508 | ebegin "Generating fonts.dir files" |
| 384 | for FONT_DIR in ${FONT_DIRS}; do |
509 | for DIR in ${FONT_DIR}; do |
| 385 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
510 | x=${ROOT}/usr/share/fonts/${DIR} |
| 386 | [[ -z "$(ls ${x}/)" ]] && continue |
511 | [[ -z "$(ls ${x}/)" ]] && continue |
| 387 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
512 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 388 | |
513 | |
| 389 | if [[ "${x/encodings}" = "${x}" ]]; then |
514 | if [[ "${x/encodings}" = "${x}" ]]; then |
| 390 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
515 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| … | |
… | |
| 397 | eend 0 |
522 | eend 0 |
| 398 | } |
523 | } |
| 399 | |
524 | |
| 400 | fix_font_permissions() { |
525 | fix_font_permissions() { |
| 401 | ebegin "Fixing permissions" |
526 | ebegin "Fixing permissions" |
| 402 | for FONT_DIR in ${FONT_DIRS}; do |
527 | for DIR in ${FONT_DIR}; do |
| 403 | find ${ROOT}/usr/share/fonts/${FONT_DIR} -type f -name 'font.*' \ |
528 | find ${ROOT}/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
| 404 | -exec chmod 0644 {} \; |
529 | -exec chmod 0644 {} \; |
| 405 | done |
530 | done |
| 406 | eend 0 |
531 | eend 0 |
| 407 | } |
532 | } |
| 408 | |
533 | |
| 409 | create_font_cache() { |
534 | create_font_cache() { |
| 410 | # danarmak found out that fc-cache should be run AFTER all the above |
535 | font_pkg_postinst |
| 411 | # stuff, as otherwise the cache is invalid, and has to be run again |
|
|
| 412 | # as root anyway |
|
|
| 413 | if [[ -x ${ROOT}/usr/bin/fc-cache ]]; then |
|
|
| 414 | ebegin "Creating FC font cache" |
|
|
| 415 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
|
|
| 416 | eend 0 |
|
|
| 417 | fi |
|
|
| 418 | } |
536 | } |
|
|
537 | |
|
|
538 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |