| 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.36 2005/12/23 16:41:52 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. |
| … | |
… | |
| 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 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
| 29 | |
29 | |
| 30 | inherit eutils libtool toolchain-funcs |
30 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools |
| 31 | |
31 | |
| 32 | # Directory prefix to use for everything |
32 | # Directory prefix to use for everything |
| 33 | XDIR="/usr" |
33 | XDIR="/usr" |
| 34 | |
34 | |
| 35 | # Set up default patchset version(s) if necessary |
35 | # Set up default patchset version(s) if necessary |
| … | |
… | |
| 38 | XDPVER="1" |
38 | XDPVER="1" |
| 39 | fi |
39 | fi |
| 40 | |
40 | |
| 41 | IUSE="" |
41 | IUSE="" |
| 42 | HOMEPAGE="http://xorg.freedesktop.org/" |
42 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 43 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0/src/everything/${P}.tar.bz2 |
43 | |
| 44 | http://xorg.freedesktop.org/releases/X11R7.0-RC4/everything/${P}.tar.bz2 |
44 | # Set up SRC_URI for individual modular releases |
| 45 | http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
45 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
| 46 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
46 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then |
| 47 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
47 | SRC_URI="${SRC_URI} |
| 48 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
48 | ${BASE_INDIVIDUAL_URI}/app/${P}.tar.bz2" |
| 49 | LICENSE="X11" |
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 | |
| 50 | SLOT="0" |
74 | SLOT="0" |
|
|
75 | |
|
|
76 | # Set the license for the package. This can be overridden by setting |
|
|
77 | # LICENSE after the inherit. |
|
|
78 | LICENSE=${PN} |
| 51 | |
79 | |
| 52 | # Set up shared dependencies |
80 | # Set up shared dependencies |
| 53 | if [[ -n "${SNAPSHOT}" ]]; then |
81 | if [[ -n "${SNAPSHOT}" ]]; then |
| 54 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
82 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 55 | DEPEND="${DEPEND} |
83 | DEPEND="${DEPEND} |
| … | |
… | |
| 59 | >=sys-devel/m4-1.4" |
87 | >=sys-devel/m4-1.4" |
| 60 | fi |
88 | fi |
| 61 | |
89 | |
| 62 | # If we're a font package, but not the font.alias one |
90 | # If we're a font package, but not the font.alias one |
| 63 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
91 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
92 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
| 64 | && [[ "${PN}" != "font-alias" ]] \ |
93 | && [[ "${PN}" != "font-alias" ]] \ |
| 65 | && [[ "${PN}" != "font-util" ]]; then |
94 | && [[ "${PN}" != "font-util" ]]; then |
| 66 | # Activate font code in the rest of the eclass |
95 | # Activate font code in the rest of the eclass |
| 67 | FONT="yes" |
96 | FONT="yes" |
| 68 | |
97 | |
| … | |
… | |
| 98 | fi |
127 | fi |
| 99 | fi |
128 | fi |
| 100 | |
129 | |
| 101 | # If we're a driver package |
130 | # If we're a driver package |
| 102 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
131 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 103 | # Don't build static driver modules |
|
|
| 104 | DRIVER_OPTIONS="--disable-static" |
|
|
| 105 | |
|
|
| 106 | # Enable driver code in the rest of the eclass |
132 | # Enable driver code in the rest of the eclass |
| 107 | DRIVER="yes" |
133 | DRIVER="yes" |
| 108 | |
134 | |
|
|
135 | if [[ ${XDPVER} != -1 ]]; then |
| 109 | # Add driver patchset to SRC_URI |
136 | # Add driver patchset to SRC_URI |
| 110 | SRC_URI="${SRC_URI} |
137 | SRC_URI="${SRC_URI} |
| 111 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
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 |
| 112 | fi |
159 | fi |
| 113 | |
160 | |
| 114 | DEPEND="${DEPEND} |
161 | DEPEND="${DEPEND} |
| 115 | >=dev-util/pkgconfig-0.18 |
162 | >=dev-util/pkgconfig-0.18" |
|
|
163 | |
|
|
164 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
|
|
165 | DEPEND="${DEPEND} |
| 116 | >=x11-misc/util-macros-0.99.2" |
166 | >=x11-misc/util-macros-0.99.2 |
|
|
167 | >=sys-devel/binutils-2.16.1-r3" |
|
|
168 | fi |
| 117 | |
169 | |
| 118 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
|
|
| 119 | RDEPEND="${RDEPEND} |
170 | RDEPEND="${RDEPEND} |
|
|
171 | || ( >=sys-apps/man-1.6b-r2 >=sys-apps/man-db-2.4.3-r1 ) |
| 120 | !<=x11-base/xorg-x11-6.9 |
172 | !<=x11-base/xorg-x11-6.9" |
| 121 | >=sys-apps/man-1.6b-r2" |
|
|
| 122 | # Provides virtual/x11 for temporary use until packages are ported |
173 | # Provides virtual/x11 for temporary use until packages are ported |
| 123 | # x11-base/x11-env" |
174 | # x11-base/x11-env" |
|
|
175 | |
|
|
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 | } |
| 124 | |
209 | |
| 125 | x-modular_unpack_source() { |
210 | x-modular_unpack_source() { |
| 126 | unpack ${A} |
211 | unpack ${A} |
| 127 | cd ${S} |
212 | cd ${S} |
| 128 | |
213 | |
| … | |
… | |
| 140 | fi |
225 | fi |
| 141 | |
226 | |
| 142 | # If this is a driver package we need to fix man page install location. |
227 | # If this is a driver package we need to fix man page install location. |
| 143 | # Running autoreconf will use the patched util-macros to make the |
228 | # Running autoreconf will use the patched util-macros to make the |
| 144 | # change for us, so we only need to patch if it is not going to run. |
229 | # change for us, so we only need to patch if it is not going to run. |
| 145 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]; then |
230 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]\ |
|
|
231 | && [[ ${XDPVER} != -1 ]]; then |
| 146 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
232 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
| 147 | fi |
233 | fi |
| 148 | |
234 | |
| 149 | # For specific list of patches |
235 | # For specific list of patches |
| 150 | if [[ -n "${PATCHES}" ]] ; then |
236 | if [[ -n "${PATCHES}" ]] ; then |
| … | |
… | |
| 164 | x-modular_reconf_source() { |
250 | x-modular_reconf_source() { |
| 165 | # Run autoreconf for CVS snapshots only |
251 | # Run autoreconf for CVS snapshots only |
| 166 | if [[ "${SNAPSHOT}" = "yes" ]] |
252 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 167 | then |
253 | then |
| 168 | # If possible, generate configure if it doesn't exist |
254 | # If possible, generate configure if it doesn't exist |
| 169 | if [ -f "${S}/configure.ac" ] |
255 | if [ -f "./configure.ac" ] |
| 170 | then |
256 | then |
| 171 | einfo "Running autoreconf..." |
257 | eautoreconf |
| 172 | autoreconf -v --force --install |
|
|
| 173 | fi |
|
|
| 174 | fi |
258 | fi |
|
|
259 | fi |
| 175 | |
260 | |
|
|
261 | # Joshua Baergen - October 23, 2005 |
|
|
262 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
263 | elibtoolize |
| 176 | } |
264 | } |
| 177 | |
265 | |
| 178 | x-modular_src_unpack() { |
266 | x-modular_src_unpack() { |
| 179 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
267 | x-modular_specs_check |
| 180 | if gcc-specs-now; then |
268 | x-modular_server_supports_drivers_check |
| 181 | msg="Do not emerge ${PN} without vanilla gcc!" |
269 | x-modular_dri_check |
| 182 | eerror "$msg" |
|
|
| 183 | die "$msg" |
|
|
| 184 | fi |
|
|
| 185 | fi |
|
|
| 186 | |
|
|
| 187 | x-modular_unpack_source |
270 | x-modular_unpack_source |
| 188 | x-modular_patch_source |
271 | x-modular_patch_source |
| 189 | x-modular_reconf_source |
272 | x-modular_reconf_source |
| 190 | |
|
|
| 191 | # Joshua Baergen - October 23, 2005 |
|
|
| 192 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
| 193 | elibtoolize |
|
|
| 194 | } |
273 | } |
| 195 | |
274 | |
| 196 | x-modular_font_configure() { |
275 | x-modular_font_configure() { |
| 197 | if [[ -n "${FONT}" ]]; then |
276 | if [[ -n "${FONT}" ]]; then |
| 198 | # Might be worth adding an option to configure your desired font |
277 | # Might be worth adding an option to configure your desired font |
| … | |
… | |
| 218 | --disable-koi8-r" |
297 | --disable-koi8-r" |
| 219 | fi |
298 | fi |
| 220 | fi |
299 | fi |
| 221 | } |
300 | } |
| 222 | |
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 | |
| 223 | x-modular_src_configure() { |
311 | x-modular_src_configure() { |
| 224 | x-modular_font_configure |
312 | x-modular_font_configure |
|
|
313 | x-modular_debug_setup |
| 225 | |
314 | |
| 226 | # If prefix isn't set here, .pc files cause problems |
315 | # If prefix isn't set here, .pc files cause problems |
| 227 | if [[ -x ./configure ]]; then |
316 | if [[ -x ./configure ]]; then |
| 228 | econf --prefix=${XDIR} \ |
317 | econf --prefix=${XDIR} \ |
| 229 | --datadir=${XDIR}/share \ |
318 | --datadir=${XDIR}/share \ |
| … | |
… | |
| 250 | # Shouldn't be necessary in XDIR=/usr |
339 | # Shouldn't be necessary in XDIR=/usr |
| 251 | # einstall forces datadir, so we need to re-force it |
340 | # einstall forces datadir, so we need to re-force it |
| 252 | # datadir=${XDIR}/share \ |
341 | # datadir=${XDIR}/share \ |
| 253 | # mandir=${XDIR}/share/man \ |
342 | # mandir=${XDIR}/share/man \ |
| 254 | |
343 | |
|
|
344 | if [[ -e ${S}/ChangeLog ]]; then |
|
|
345 | dodoc ${S}/ChangeLog |
|
|
346 | fi |
|
|
347 | |
|
|
348 | # Make sure docs get compressed |
|
|
349 | prepalldocs |
|
|
350 | |
| 255 | # Don't install libtool archives for server modules |
351 | # Don't install libtool archives for server modules |
| 256 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
352 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
| 257 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
353 | find ${D}/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
| 258 | | xargs rm -f |
354 | | xargs rm -f |
| 259 | fi |
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 |
| 260 | } |
366 | } |
| 261 | |
367 | |
| 262 | x-modular_pkg_preinst() { |
368 | x-modular_pkg_preinst() { |
| 263 | if [[ -n "${FONT}" ]]; then |
369 | # We no longer do anything here, but we can't remove it from the API |
| 264 | discover_font_dirs |
370 | : |
| 265 | fi |
|
|
| 266 | } |
371 | } |
| 267 | |
372 | |
| 268 | x-modular_pkg_postinst() { |
373 | x-modular_pkg_postinst() { |
| 269 | if [[ -n "${FONT}" ]]; then |
374 | if [[ -n "${FONT}" ]]; then |
| 270 | setup_fonts |
375 | setup_fonts |
| … | |
… | |
| 311 | eend 0 |
416 | eend 0 |
| 312 | done |
417 | done |
| 313 | } |
418 | } |
| 314 | |
419 | |
| 315 | setup_fonts() { |
420 | setup_fonts() { |
| 316 | if [[ ! -n "${FONT_DIRS}" ]]; then |
421 | if [[ ! -n "${FONT_DIR}" ]]; then |
| 317 | msg="FONT_DIRS is empty. The ebuild should 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." |
| 318 | eerror "${msg}" |
423 | eerror "${msg}" |
| 319 | die "${msg}" |
424 | die "${msg}" |
| 320 | fi |
425 | fi |
| 321 | |
426 | |
| 322 | create_fonts_scale |
427 | create_fonts_scale |
| 323 | create_fonts_dir |
428 | create_fonts_dir |
| 324 | fix_font_permissions |
429 | fix_font_permissions |
| 325 | create_font_cache |
430 | create_font_cache |
| 326 | } |
431 | } |
| 327 | |
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 | |
| 328 | discover_font_dirs() { |
458 | discover_font_dirs() { |
| 329 | pushd ${IMAGE}/usr/share/fonts |
459 | FONT_DIRS="${FONT_DIR}" |
| 330 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
|
|
| 331 | FONT_DIRS="$(echo ${FONT_DIRS} | sed -e 's:./::g')" |
|
|
| 332 | popd |
|
|
| 333 | } |
460 | } |
| 334 | |
461 | |
| 335 | create_fonts_scale() { |
462 | create_fonts_scale() { |
| 336 | ebegin "Creating fonts.scale files" |
463 | ebegin "Creating fonts.scale files" |
| 337 | local x |
464 | local x |
| 338 | for FONT_DIR in ${FONT_DIRS}; do |
465 | for DIR in ${FONT_DIR}; do |
| 339 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
466 | x=${ROOT}/usr/share/fonts/${DIR} |
| 340 | [[ -z "$(ls ${x}/)" ]] && continue |
467 | [[ -z "$(ls ${x}/)" ]] && continue |
| 341 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
468 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 342 | |
469 | |
| 343 | # Only generate .scale files if truetype, opentype or type1 |
470 | # Only generate .scale files if truetype, opentype or type1 |
| 344 | # fonts are present ... |
471 | # fonts are present ... |
| … | |
… | |
| 378 | eend 0 |
505 | eend 0 |
| 379 | } |
506 | } |
| 380 | |
507 | |
| 381 | create_fonts_dir() { |
508 | create_fonts_dir() { |
| 382 | ebegin "Generating fonts.dir files" |
509 | ebegin "Generating fonts.dir files" |
| 383 | for FONT_DIR in ${FONT_DIRS}; do |
510 | for DIR in ${FONT_DIR}; do |
| 384 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
511 | x=${ROOT}/usr/share/fonts/${DIR} |
| 385 | [[ -z "$(ls ${x}/)" ]] && continue |
512 | [[ -z "$(ls ${x}/)" ]] && continue |
| 386 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
513 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 387 | |
514 | |
| 388 | if [[ "${x/encodings}" = "${x}" ]]; then |
515 | if [[ "${x/encodings}" = "${x}" ]]; then |
| 389 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
516 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
| … | |
… | |
| 396 | eend 0 |
523 | eend 0 |
| 397 | } |
524 | } |
| 398 | |
525 | |
| 399 | fix_font_permissions() { |
526 | fix_font_permissions() { |
| 400 | ebegin "Fixing permissions" |
527 | ebegin "Fixing permissions" |
| 401 | for FONT_DIR in ${FONT_DIRS}; do |
528 | for DIR in ${FONT_DIR}; do |
| 402 | find ${ROOT}/usr/share/fonts/${FONT_DIR} -type f -name 'font.*' \ |
529 | find ${ROOT}/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
| 403 | -exec chmod 0644 {} \; |
530 | -exec chmod 0644 {} \; |
| 404 | done |
531 | done |
| 405 | eend 0 |
532 | eend 0 |
| 406 | } |
533 | } |
| 407 | |
534 | |