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