| 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.42 2006/02/03 18:09:46 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.89 2007/11/13 22:50:04 dberkholz 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 | # Using this eclass: |
10 | # Using this eclass: |
| … | |
… | |
| 19 | # |
19 | # |
| 20 | # If you're creating a font package and the suffix of PN is not equal to the |
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 |
21 | # subdirectory of /usr/share/fonts/ it should install into, set FONT_DIR to that |
| 22 | # directory or directories. |
22 | # directory or directories. |
| 23 | # |
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 | # |
| 24 | # IMPORTANT: Both SNAPSHOT and FONT_DIR must be set _before_ the inherit. |
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. |
| 25 | # |
34 | # |
| 26 | # Pretty much everything else should be automatic. |
35 | # 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 | |
36 | |
| 32 | # Directory prefix to use for everything |
37 | # Directory prefix to use for everything |
| 33 | XDIR="/usr" |
38 | XDIR="/usr" |
| 34 | |
39 | |
| 35 | # Set up default patchset version(s) if necessary |
40 | # Set up default patchset version(s) if necessary |
| … | |
… | |
| 38 | XDPVER="1" |
43 | XDPVER="1" |
| 39 | fi |
44 | fi |
| 40 | |
45 | |
| 41 | IUSE="" |
46 | IUSE="" |
| 42 | HOMEPAGE="http://xorg.freedesktop.org/" |
47 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 43 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0/src/everything/${P}.tar.bz2 |
48 | |
| 44 | http://xorg.freedesktop.org/releases/X11R7.0-RC4/everything/${P}.tar.bz2 |
49 | if [[ ${PV} = 9999* ]]; then |
| 45 | http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
50 | GIT_ECLASS="git" |
| 46 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
51 | SNAPSHOT="yes" |
| 47 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
52 | SRC_URI="" |
| 48 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
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 | |
| 49 | SLOT="0" |
86 | SLOT="0" |
| 50 | |
87 | |
| 51 | # Set the license for the package. This can be overridden by setting |
88 | # Set the license for the package. This can be overridden by setting |
| 52 | # LICENSE after the inherit. |
89 | # LICENSE after the inherit. |
| 53 | LICENSE=${PN} |
90 | LICENSE=${PN} |
| 54 | |
91 | |
| 55 | # Set up shared dependencies |
92 | # Set up shared dependencies |
| 56 | if [[ -n "${SNAPSHOT}" ]]; then |
93 | if [[ -n "${SNAPSHOT}" ]]; then |
| 57 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
94 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 58 | DEPEND="${DEPEND} |
95 | DEPEND="${DEPEND} |
| 59 | >=sys-devel/autoconf-2.57 |
|
|
| 60 | >=sys-devel/automake-1.7 |
|
|
| 61 | >=sys-devel/libtool-1.5 |
96 | >=sys-devel/libtool-1.5 |
| 62 | >=sys-devel/m4-1.4" |
97 | >=sys-devel/m4-1.4" |
|
|
98 | WANT_AUTOCONF="latest" |
|
|
99 | WANT_AUTOMAKE="latest" |
| 63 | fi |
100 | fi |
| 64 | |
101 | |
| 65 | # If we're a font package, but not the font.alias one |
102 | # If we're a font package, but not the font.alias one |
|
|
103 | FONT_ECLASS="" |
| 66 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
104 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
105 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
| 67 | && [[ "${PN}" != "font-alias" ]] \ |
106 | && [[ "${PN}" != "font-alias" ]] \ |
| 68 | && [[ "${PN}" != "font-util" ]]; then |
107 | && [[ "${PN}" != "font-util" ]]; then |
| 69 | # Activate font code in the rest of the eclass |
108 | # Activate font code in the rest of the eclass |
| 70 | FONT="yes" |
109 | FONT="yes" |
|
|
110 | |
|
|
111 | # Whether to inherit the font eclass |
|
|
112 | FONT_ECLASS="font" |
| 71 | |
113 | |
| 72 | RDEPEND="${RDEPEND} |
114 | RDEPEND="${RDEPEND} |
| 73 | media-fonts/encodings |
115 | media-fonts/encodings |
| 74 | x11-apps/mkfontscale |
116 | x11-apps/mkfontscale |
| 75 | x11-apps/mkfontdir" |
117 | x11-apps/mkfontdir" |
| … | |
… | |
| 104 | # If we're a driver package |
146 | # If we're a driver package |
| 105 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
147 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 106 | # Enable driver code in the rest of the eclass |
148 | # Enable driver code in the rest of the eclass |
| 107 | DRIVER="yes" |
149 | DRIVER="yes" |
| 108 | |
150 | |
|
|
151 | if [[ ${XDPVER} != -1 ]]; then |
| 109 | # Add driver patchset to SRC_URI |
152 | # Add driver patchset to SRC_URI |
| 110 | SRC_URI="${SRC_URI} |
153 | SRC_URI="${SRC_URI} |
| 111 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
154 | mirror://gentoo/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
155 | fi |
| 112 | fi |
156 | fi |
| 113 | |
157 | |
| 114 | # Debugging -- ignore packages that can't be built with debugging |
158 | # Debugging -- ignore packages that can't be built with debugging |
| 115 | if [[ -z "${FONT}" ]] \ |
159 | if [[ -z "${FONT}" ]] \ |
| 116 | || [[ "${PN/app-doc}" != "${PN}" ]] \ |
160 | && [[ "${CATEGORY/app-doc}" = "${CATEGORY}" ]] \ |
| 117 | || [[ "${PN/x11-proto}" != "${PN}" ]] \ |
161 | && [[ "${CATEGORY/x11-proto}" = "${CATEGORY}" ]] \ |
| 118 | || [[ "${PN/util-macros}" != "${PN}" ]] \ |
162 | && [[ "${PN/util-macros}" = "${PN}" ]] \ |
| 119 | || [[ "${PN/xbitmaps}" != "${PN}" ]] \ |
163 | && [[ "${PN/xbitmaps}" = "${PN}" ]] \ |
| 120 | || [[ "${PN/xkbdata}" != "${PN}" ]] \ |
164 | && [[ "${PN/xkbdata}" = "${PN}" ]] \ |
| 121 | || [[ "${PN/xorg-cf-files}" != "${PN}" ]] \ |
165 | && [[ "${PN/xorg-cf-files}" = "${PN}" ]] \ |
| 122 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
166 | && [[ "${PN/xcursor}" = "${PN}" ]] \ |
| 123 | ; then |
167 | ; then |
| 124 | DEBUGGABLE="yes" |
168 | DEBUGGABLE="yes" |
| 125 | IUSE="${IUSE} debug" |
169 | IUSE="${IUSE} debug" |
| 126 | if use debug; then |
|
|
| 127 | RESTRICT="${RESTRICT} nostrip" |
|
|
| 128 | fi |
|
|
| 129 | fi |
170 | fi |
| 130 | |
171 | |
| 131 | DEPEND="${DEPEND} |
172 | DEPEND="${DEPEND} |
| 132 | >=dev-util/pkgconfig-0.18" |
173 | >=dev-util/pkgconfig-0.18" |
| 133 | |
174 | |
| 134 | if [[ "${PN/util-macros}" != "${PN}" ]]; then |
175 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
| 135 | DEPEND="${DEPEND} |
176 | DEPEND="${DEPEND} |
| 136 | >=x11-misc/util-macros-0.99.2" |
177 | >=x11-misc/util-macros-0.99.2 |
|
|
178 | >=sys-devel/binutils-2.16.1-r3" |
| 137 | fi |
179 | fi |
| 138 | |
180 | |
| 139 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
|
|
| 140 | RDEPEND="${RDEPEND} |
181 | RDEPEND="${RDEPEND} |
| 141 | !<=x11-base/xorg-x11-6.9 |
182 | !<=x11-base/xorg-x11-6.9" |
| 142 | >=sys-apps/man-1.6b-r2" |
|
|
| 143 | # Provides virtual/x11 for temporary use until packages are ported |
183 | # Provides virtual/x11 for temporary use until packages are ported |
| 144 | # x11-base/x11-env" |
184 | # x11-base/x11-env" |
| 145 | |
185 | |
|
|
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 | } |
|
|
222 | |
| 146 | x-modular_unpack_source() { |
223 | x-modular_unpack_source() { |
|
|
224 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
225 | git_src_unpack |
|
|
226 | else |
| 147 | unpack ${A} |
227 | unpack ${A} |
|
|
228 | fi |
| 148 | cd ${S} |
229 | cd ${S} |
| 149 | |
230 | |
| 150 | if [[ -n ${FONT_OPTIONS} ]]; then |
231 | if [[ -n ${FONT_OPTIONS} ]]; then |
| 151 | einfo "Detected font directory: ${FONT_DIR}" |
232 | einfo "Detected font directory: ${FONT_DIR}" |
| 152 | fi |
233 | fi |
| … | |
… | |
| 161 | fi |
242 | fi |
| 162 | |
243 | |
| 163 | # If this is a driver package we need to fix man page install location. |
244 | # 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 |
245 | # 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. |
246 | # change for us, so we only need to patch if it is not going to run. |
| 166 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]; then |
247 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]\ |
|
|
248 | && [[ ${XDPVER} != -1 ]]; then |
| 167 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
249 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
| 168 | fi |
250 | fi |
| 169 | |
251 | |
| 170 | # For specific list of patches |
252 | # For specific list of patches |
| 171 | if [[ -n "${PATCHES}" ]] ; then |
253 | if [[ -n "${PATCHES}" ]] ; then |
| … | |
… | |
| 185 | x-modular_reconf_source() { |
267 | x-modular_reconf_source() { |
| 186 | # Run autoreconf for CVS snapshots only |
268 | # Run autoreconf for CVS snapshots only |
| 187 | if [[ "${SNAPSHOT}" = "yes" ]] |
269 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 188 | then |
270 | then |
| 189 | # If possible, generate configure if it doesn't exist |
271 | # If possible, generate configure if it doesn't exist |
| 190 | if [ -f "${S}/configure.ac" ] |
272 | if [ -f "./configure.ac" ] |
| 191 | then |
273 | then |
| 192 | einfo "Running autoreconf..." |
274 | eautoreconf |
| 193 | autoreconf -v --force --install |
|
|
| 194 | fi |
|
|
| 195 | fi |
275 | fi |
|
|
276 | fi |
| 196 | |
277 | |
|
|
278 | # Joshua Baergen - October 23, 2005 |
|
|
279 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
280 | elibtoolize |
| 197 | } |
281 | } |
| 198 | |
282 | |
| 199 | x-modular_src_unpack() { |
283 | x-modular_src_unpack() { |
| 200 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
284 | x-modular_specs_check |
| 201 | if gcc-specs-now; then |
285 | x-modular_server_supports_drivers_check |
| 202 | msg="Do not emerge ${PN} without vanilla gcc!" |
286 | x-modular_dri_check |
| 203 | eerror "$msg" |
|
|
| 204 | die "$msg" |
|
|
| 205 | fi |
|
|
| 206 | fi |
|
|
| 207 | |
|
|
| 208 | x-modular_unpack_source |
287 | x-modular_unpack_source |
| 209 | x-modular_patch_source |
288 | x-modular_patch_source |
| 210 | x-modular_reconf_source |
289 | x-modular_reconf_source |
| 211 | |
|
|
| 212 | # Joshua Baergen - October 23, 2005 |
|
|
| 213 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
| 214 | elibtoolize |
|
|
| 215 | } |
290 | } |
| 216 | |
291 | |
| 217 | x-modular_font_configure() { |
292 | x-modular_font_configure() { |
| 218 | if [[ -n "${FONT}" ]]; then |
293 | if [[ -n "${FONT}" ]]; then |
| 219 | # Might be worth adding an option to configure your desired font |
294 | # Might be worth adding an option to configure your desired font |
| … | |
… | |
| 253 | x-modular_src_configure() { |
328 | x-modular_src_configure() { |
| 254 | x-modular_font_configure |
329 | x-modular_font_configure |
| 255 | x-modular_debug_setup |
330 | x-modular_debug_setup |
| 256 | |
331 | |
| 257 | # If prefix isn't set here, .pc files cause problems |
332 | # If prefix isn't set here, .pc files cause problems |
| 258 | if [[ -x ./configure ]]; then |
333 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
| 259 | econf --prefix=${XDIR} \ |
334 | econf --prefix=${XDIR} \ |
| 260 | --datadir=${XDIR}/share \ |
335 | --datadir=${XDIR}/share \ |
| 261 | ${FONT_OPTIONS} \ |
336 | ${FONT_OPTIONS} \ |
| 262 | ${DRIVER_OPTIONS} \ |
337 | ${DRIVER_OPTIONS} \ |
| 263 | ${CONFIGURE_OPTIONS} |
338 | ${CONFIGURE_OPTIONS} |
| … | |
… | |
| 281 | # Shouldn't be necessary in XDIR=/usr |
356 | # Shouldn't be necessary in XDIR=/usr |
| 282 | # einstall forces datadir, so we need to re-force it |
357 | # einstall forces datadir, so we need to re-force it |
| 283 | # datadir=${XDIR}/share \ |
358 | # datadir=${XDIR}/share \ |
| 284 | # mandir=${XDIR}/share/man \ |
359 | # mandir=${XDIR}/share/man \ |
| 285 | |
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 | |
| 286 | # Don't install libtool archives for server modules |
374 | # Don't install libtool archives for server modules |
| 287 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
375 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
| 288 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
376 | find ${D}/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
| 289 | | xargs rm -f |
377 | | xargs rm -f |
| 290 | fi |
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 |
| 291 | } |
389 | } |
| 292 | |
390 | |
| 293 | x-modular_pkg_preinst() { |
391 | x-modular_pkg_preinst() { |
| 294 | if [[ -n "${FONT}" ]]; then |
392 | # We no longer do anything here, but we can't remove it from the API |
| 295 | discover_font_dirs |
393 | : |
| 296 | fi |
|
|
| 297 | } |
394 | } |
| 298 | |
395 | |
| 299 | x-modular_pkg_postinst() { |
396 | x-modular_pkg_postinst() { |
| 300 | if [[ -n "${FONT}" ]]; then |
397 | if [[ -n "${FONT}" ]]; then |
| 301 | setup_fonts |
398 | setup_fonts |
| … | |
… | |
| 303 | } |
400 | } |
| 304 | |
401 | |
| 305 | x-modular_pkg_postrm() { |
402 | x-modular_pkg_postrm() { |
| 306 | if [[ -n "${FONT}" ]]; then |
403 | if [[ -n "${FONT}" ]]; then |
| 307 | cleanup_fonts |
404 | cleanup_fonts |
|
|
405 | font_pkg_postrm |
| 308 | fi |
406 | fi |
| 309 | } |
407 | } |
| 310 | |
408 | |
| 311 | cleanup_fonts() { |
409 | cleanup_fonts() { |
| 312 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
410 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
| … | |
… | |
| 342 | eend 0 |
440 | eend 0 |
| 343 | done |
441 | done |
| 344 | } |
442 | } |
| 345 | |
443 | |
| 346 | setup_fonts() { |
444 | setup_fonts() { |
| 347 | if [[ ! -n "${FONT_DIRS}" ]]; then |
445 | 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." |
446 | msg="FONT_DIR is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
| 349 | eerror "${msg}" |
447 | eerror "${msg}" |
| 350 | die "${msg}" |
448 | die "${msg}" |
| 351 | fi |
449 | fi |
| 352 | |
450 | |
| 353 | create_fonts_scale |
451 | create_fonts_scale |
| 354 | create_fonts_dir |
452 | create_fonts_dir |
| 355 | fix_font_permissions |
453 | fix_font_permissions |
| 356 | create_font_cache |
454 | create_font_cache |
| 357 | } |
455 | } |
| 358 | |
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 | |
| 359 | discover_font_dirs() { |
482 | discover_font_dirs() { |
| 360 | pushd ${IMAGE}/usr/share/fonts |
483 | 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 | } |
484 | } |
| 365 | |
485 | |
| 366 | create_fonts_scale() { |
486 | create_fonts_scale() { |
| 367 | ebegin "Creating fonts.scale files" |
487 | ebegin "Creating fonts.scale files" |
| 368 | local x |
488 | local x |
| 369 | for FONT_DIR in ${FONT_DIRS}; do |
489 | for DIR in ${FONT_DIR}; do |
| 370 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
490 | x=${ROOT}/usr/share/fonts/${DIR} |
| 371 | [[ -z "$(ls ${x}/)" ]] && continue |
491 | [[ -z "$(ls ${x}/)" ]] && continue |
| 372 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
492 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 373 | |
493 | |
| 374 | # Only generate .scale files if truetype, opentype or type1 |
494 | # Only generate .scale files if truetype, opentype or type1 |
| 375 | # fonts are present ... |
495 | # fonts are present ... |
| 376 | |
496 | |
| 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 |
497 | # NOTE: There is no way to regenerate Speedo/CID fonts.scale |
| 380 | # <spyderous@gentoo.org> 2 August 2004 |
498 | # <dberkholz@gentoo.org> 2 August 2004 |
| 381 | if [[ "${x/encodings}" = "${x}" ]] \ |
499 | 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 |
500 | && [[ -n "$(find ${x} -iname '*.[pot][ft][abcf]' -print)" ]]; then |
| 403 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
501 | mkfontscale \ |
| 404 | ${ROOT}/usr/bin/mkfontscale \ |
|
|
| 405 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
502 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
| 406 | -- ${x} |
503 | -- ${x} |
| 407 | fi |
504 | fi |
| 408 | done |
505 | done |
| 409 | eend 0 |
506 | eend 0 |
| 410 | } |
507 | } |
| 411 | |
508 | |
| 412 | create_fonts_dir() { |
509 | create_fonts_dir() { |
| 413 | ebegin "Generating fonts.dir files" |
510 | ebegin "Generating fonts.dir files" |
| 414 | for FONT_DIR in ${FONT_DIRS}; do |
511 | for DIR in ${FONT_DIR}; do |
| 415 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
512 | x=${ROOT}/usr/share/fonts/${DIR} |
| 416 | [[ -z "$(ls ${x}/)" ]] && continue |
513 | [[ -z "$(ls ${x}/)" ]] && continue |
| 417 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
514 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 418 | |
515 | |
| 419 | if [[ "${x/encodings}" = "${x}" ]]; then |
516 | if [[ "${x/encodings}" = "${x}" ]]; then |
| 420 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
517 | mkfontdir \ |
| 421 | ${ROOT}/usr/bin/mkfontdir \ |
|
|
| 422 | -e ${ROOT}/usr/share/fonts/encodings \ |
518 | -e ${ROOT}/usr/share/fonts/encodings \ |
| 423 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
519 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
| 424 | -- ${x} |
520 | -- ${x} |
| 425 | fi |
521 | fi |
| 426 | done |
522 | done |
| 427 | eend 0 |
523 | eend 0 |
| 428 | } |
524 | } |
| 429 | |
525 | |
| 430 | fix_font_permissions() { |
526 | fix_font_permissions() { |
| 431 | ebegin "Fixing permissions" |
527 | ebegin "Fixing permissions" |
| 432 | for FONT_DIR in ${FONT_DIRS}; do |
528 | for DIR in ${FONT_DIR}; do |
| 433 | find ${ROOT}/usr/share/fonts/${FONT_DIR} -type f -name 'font.*' \ |
529 | find ${ROOT}/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
| 434 | -exec chmod 0644 {} \; |
530 | -exec chmod 0644 {} \; |
| 435 | done |
531 | done |
| 436 | eend 0 |
532 | eend 0 |
| 437 | } |
533 | } |
| 438 | |
534 | |
| 439 | create_font_cache() { |
535 | create_font_cache() { |
| 440 | # danarmak found out that fc-cache should be run AFTER all the above |
536 | 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 | } |
537 | } |
|
|
538 | |
|
|
539 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |