| 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.26 2005/12/07 22:10:45 joshuabaergen Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.87 2007/10/14 10:12:24 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 | # 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_preinst pkg_postinst pkg_postrm |
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 libtool toolchain-funcs |
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 | XDIR="/usr" |
38 | XDIR="/usr" |
| 19 | |
39 | |
|
|
40 | # Set up default patchset version(s) if necessary |
|
|
41 | # x11-driver-patches |
|
|
42 | if [[ -z "${XDPVER}" ]]; then |
|
|
43 | XDPVER="1" |
|
|
44 | fi |
|
|
45 | |
| 20 | IUSE="" |
46 | IUSE="" |
| 21 | HOMEPAGE="http://xorg.freedesktop.org/" |
47 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 22 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
48 | |
| 23 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
49 | if [[ ${PV} = 9999* ]]; then |
| 24 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
50 | GIT_ECLASS="git" |
| 25 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
51 | SNAPSHOT="yes" |
| 26 | LICENSE="X11" |
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 | |
| 27 | SLOT="0" |
86 | SLOT="0" |
| 28 | |
87 | |
|
|
88 | # Set the license for the package. This can be overridden by setting |
|
|
89 | # LICENSE after the inherit. |
|
|
90 | LICENSE=${PN} |
|
|
91 | |
| 29 | # Set up shared dependencies |
92 | # Set up shared dependencies |
| 30 | if [ -n "${SNAPSHOT}" ]; then |
93 | if [[ -n "${SNAPSHOT}" ]]; then |
| 31 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
94 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 32 | DEPEND="${DEPEND} |
95 | DEPEND="${DEPEND} |
| 33 | >=sys-devel/autoconf-2.57 |
|
|
| 34 | >=sys-devel/automake-1.7 |
|
|
| 35 | >=sys-devel/libtool-1.5 |
96 | >=sys-devel/libtool-1.5 |
| 36 | >=sys-devel/m4-1.4" |
97 | >=sys-devel/m4-1.4" |
|
|
98 | WANT_AUTOCONF="latest" |
|
|
99 | WANT_AUTOMAKE="latest" |
| 37 | fi |
100 | fi |
| 38 | |
101 | |
| 39 | # 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="" |
| 40 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
104 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
105 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
| 41 | && [[ "${PN}" != "font-alias" ]] \ |
106 | && [[ "${PN}" != "font-alias" ]] \ |
| 42 | && [[ "${PN}" != "font-util" ]]; then |
107 | && [[ "${PN}" != "font-util" ]]; then |
| 43 | # Activate font code in the rest of the eclass |
108 | # Activate font code in the rest of the eclass |
| 44 | FONT="yes" |
109 | FONT="yes" |
| 45 | |
110 | |
|
|
111 | # Whether to inherit the font eclass |
|
|
112 | FONT_ECLASS="font" |
|
|
113 | |
| 46 | RDEPEND="${RDEPEND} |
114 | RDEPEND="${RDEPEND} |
| 47 | media-fonts/encodings" |
115 | media-fonts/encodings |
|
|
116 | x11-apps/mkfontscale |
|
|
117 | x11-apps/mkfontdir" |
| 48 | PDEPEND="${PDEPEND} |
118 | PDEPEND="${PDEPEND} |
| 49 | media-fonts/font-alias" |
119 | media-fonts/font-alias" |
| 50 | |
120 | |
| 51 | # Starting with 7.0RC3, we can specify the font directory |
121 | # Starting with 7.0RC3, we can specify the font directory |
| 52 | # But oddly, we can't do the same for encodings or font-alias |
122 | # But oddly, we can't do the same for encodings or font-alias |
| … | |
… | |
| 73 | fi |
143 | fi |
| 74 | fi |
144 | fi |
| 75 | |
145 | |
| 76 | # If we're a driver package |
146 | # If we're a driver package |
| 77 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
147 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 78 | # Don't build static driver modules |
148 | # Enable driver code in the rest of the eclass |
| 79 | DRIVER_OPTIONS="--disable-static" |
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" |
| 80 | fi |
170 | fi |
| 81 | |
171 | |
| 82 | DEPEND="${DEPEND} |
172 | DEPEND="${DEPEND} |
| 83 | >=dev-util/pkgconfig-0.18 |
173 | >=dev-util/pkgconfig-0.18" |
|
|
174 | |
|
|
175 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
|
|
176 | DEPEND="${DEPEND} |
| 84 | >=x11-misc/util-macros-0.99.2" |
177 | >=x11-misc/util-macros-0.99.2 |
|
|
178 | >=sys-devel/binutils-2.16.1-r3" |
|
|
179 | fi |
| 85 | |
180 | |
| 86 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
|
|
| 87 | RDEPEND="${RDEPEND} |
181 | RDEPEND="${RDEPEND} |
|
|
182 | || ( >=sys-apps/man-1.6b-r2 >=sys-apps/man-db-2.4.3-r1 ) |
| 88 | !<=x11-base/xorg-x11-6.9 |
183 | !<=x11-base/xorg-x11-6.9" |
| 89 | >=sys-apps/man-1.6b-r2" |
|
|
| 90 | # Provides virtual/x11 for temporary use until packages are ported |
184 | # Provides virtual/x11 for temporary use until packages are ported |
| 91 | # x11-base/x11-env" |
185 | # x11-base/x11-env" |
| 92 | |
186 | |
|
|
187 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
|
|
188 | ${FONT_ECLASS} ${GIT_ECLASS} |
|
|
189 | |
|
|
190 | x-modular_specs_check() { |
|
|
191 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
192 | append-ldflags -Wl,-z,lazy |
|
|
193 | # (#116698) breaks loading |
|
|
194 | filter-ldflags -Wl,-z,now |
|
|
195 | fi |
|
|
196 | } |
|
|
197 | |
|
|
198 | x-modular_dri_check() { |
|
|
199 | # (#120057) Enabling DRI in drivers requires that the server was built with |
|
|
200 | # support for it |
|
|
201 | if [[ -n "${DRIVER}" ]]; then |
|
|
202 | if has dri ${IUSE} && use dri; then |
|
|
203 | einfo "Checking for direct rendering capabilities ..." |
|
|
204 | if ! built_with_use x11-base/xorg-server dri; then |
|
|
205 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
206 | fi |
|
|
207 | fi |
|
|
208 | fi |
|
|
209 | } |
|
|
210 | |
|
|
211 | x-modular_server_supports_drivers_check() { |
|
|
212 | # (#135873) Only certain servers will actually use or be capable of |
|
|
213 | # building external drivers, including binary drivers. |
|
|
214 | if [[ -n "${DRIVER}" ]]; then |
|
|
215 | if has_version '>=x11-base/xorg-server-1.1'; then |
|
|
216 | if ! built_with_use x11-base/xorg-server xorg; then |
|
|
217 | eerror "x11-base/xorg-server is not built with support for external drivers." |
|
|
218 | die "You must build x11-base/xorg-server with USE=xorg." |
|
|
219 | fi |
|
|
220 | fi |
|
|
221 | fi |
|
|
222 | } |
|
|
223 | |
| 93 | x-modular_unpack_source() { |
224 | x-modular_unpack_source() { |
|
|
225 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
226 | git_src_unpack |
|
|
227 | else |
| 94 | unpack ${A} |
228 | unpack ${A} |
|
|
229 | fi |
| 95 | cd ${S} |
230 | cd ${S} |
| 96 | |
|
|
| 97 | # Joshua Baergen - October 23, 2005 |
|
|
| 98 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
| 99 | elibtoolize |
|
|
| 100 | |
231 | |
| 101 | if [[ -n ${FONT_OPTIONS} ]]; then |
232 | if [[ -n ${FONT_OPTIONS} ]]; then |
| 102 | einfo "Detected font directory: ${FONT_DIR}" |
233 | einfo "Detected font directory: ${FONT_DIR}" |
| 103 | fi |
234 | fi |
| 104 | } |
235 | } |
| 105 | |
236 | |
| 106 | x-modular_patch_source() { |
237 | x-modular_patch_source() { |
| 107 | # Use standardized names and locations with bulk patching |
238 | # Use standardized names and locations with bulk patching |
| 108 | # Patch directory is ${WORKDIR}/patch |
239 | # Patch directory is ${WORKDIR}/patch |
| 109 | # See epatch() in eutils.eclass for more documentation |
240 | # See epatch() in eutils.eclass for more documentation |
| 110 | if [ -z "${EPATCH_SUFFIX}" ] ; then |
241 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
| 111 | EPATCH_SUFFIX="patch" |
242 | EPATCH_SUFFIX="patch" |
| 112 | fi |
243 | fi |
| 113 | |
244 | |
|
|
245 | # If this is a driver package we need to fix man page install location. |
|
|
246 | # Running autoreconf will use the patched util-macros to make the |
|
|
247 | # change for us, so we only need to patch if it is not going to run. |
|
|
248 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]\ |
|
|
249 | && [[ ${XDPVER} != -1 ]]; then |
|
|
250 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
251 | fi |
|
|
252 | |
| 114 | # For specific list of patches |
253 | # For specific list of patches |
| 115 | if [ -n "${PATCHES}" ] ; then |
254 | if [[ -n "${PATCHES}" ]] ; then |
| 116 | for PATCH in ${PATCHES} |
255 | for PATCH in ${PATCHES} |
| 117 | do |
256 | do |
| 118 | epatch ${PATCH} |
257 | epatch ${PATCH} |
| 119 | done |
258 | done |
| 120 | # For non-default directory bulk patching |
259 | # For non-default directory bulk patching |
| 121 | elif [ -n "${PATCH_LOC}" ] ; then |
260 | elif [[ -n "${PATCH_LOC}" ]] ; then |
| 122 | epatch ${PATCH_LOC} |
261 | epatch ${PATCH_LOC} |
| 123 | # For standard bulk patching |
262 | # For standard bulk patching |
| 124 | elif [ -d "${EPATCH_SOURCE}" ] ; then |
263 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
| 125 | epatch |
264 | epatch |
| 126 | fi |
265 | fi |
| 127 | } |
266 | } |
| 128 | |
267 | |
| 129 | x-modular_reconf_source() { |
268 | x-modular_reconf_source() { |
| 130 | # Run autoreconf for CVS snapshots only |
269 | # Run autoreconf for CVS snapshots only |
| 131 | if [ "${SNAPSHOT}" = "yes" ] |
270 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 132 | then |
271 | then |
| 133 | # If possible, generate configure if it doesn't exist |
272 | # If possible, generate configure if it doesn't exist |
| 134 | if [ -f "${S}/configure.ac" ] |
273 | if [ -f "./configure.ac" ] |
| 135 | then |
274 | then |
| 136 | einfo "Running autoreconf..." |
275 | eautoreconf |
| 137 | autoreconf -v --force --install |
|
|
| 138 | fi |
|
|
| 139 | fi |
276 | fi |
|
|
277 | fi |
| 140 | |
278 | |
|
|
279 | # Joshua Baergen - October 23, 2005 |
|
|
280 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
281 | elibtoolize |
| 141 | } |
282 | } |
| 142 | |
283 | |
| 143 | x-modular_src_unpack() { |
284 | x-modular_src_unpack() { |
| 144 | for x in xorg-server xf86-video- xf86-input- ; do |
285 | x-modular_specs_check |
| 145 | if [[ ${PN:0:11} = $x ]] && gcc-specs-now; then |
286 | x-modular_server_supports_drivers_check |
| 146 | msg="Do not emerge ${PN} without vanilla gcc!" |
287 | x-modular_dri_check |
| 147 | eerror "$msg" |
|
|
| 148 | die "$msg" |
|
|
| 149 | fi |
|
|
| 150 | done |
|
|
| 151 | |
|
|
| 152 | x-modular_unpack_source |
288 | x-modular_unpack_source |
| 153 | x-modular_patch_source |
289 | x-modular_patch_source |
| 154 | x-modular_reconf_source |
290 | x-modular_reconf_source |
| 155 | } |
291 | } |
| 156 | |
292 | |
| … | |
… | |
| 179 | --disable-koi8-r" |
315 | --disable-koi8-r" |
| 180 | fi |
316 | fi |
| 181 | fi |
317 | fi |
| 182 | } |
318 | } |
| 183 | |
319 | |
|
|
320 | x-modular_debug_setup() { |
|
|
321 | if [[ -n "${DEBUGGABLE}" ]]; then |
|
|
322 | if use debug; then |
|
|
323 | strip-flags |
|
|
324 | append-flags -g |
|
|
325 | fi |
|
|
326 | fi |
|
|
327 | } |
|
|
328 | |
| 184 | x-modular_src_configure() { |
329 | x-modular_src_configure() { |
| 185 | x-modular_font_configure |
330 | x-modular_font_configure |
|
|
331 | x-modular_debug_setup |
| 186 | |
332 | |
| 187 | # If prefix isn't set here, .pc files cause problems |
333 | # If prefix isn't set here, .pc files cause problems |
| 188 | if [ -x ./configure ]; then |
334 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
| 189 | econf --prefix=${XDIR} \ |
335 | econf --prefix=${XDIR} \ |
| 190 | --datadir=${XDIR}/share \ |
336 | --datadir=${XDIR}/share \ |
| 191 | ${FONT_OPTIONS} \ |
337 | ${FONT_OPTIONS} \ |
| 192 | ${DRIVER_OPTIONS} \ |
338 | ${DRIVER_OPTIONS} \ |
| 193 | ${CONFIGURE_OPTIONS} |
339 | ${CONFIGURE_OPTIONS} |
| … | |
… | |
| 211 | # Shouldn't be necessary in XDIR=/usr |
357 | # Shouldn't be necessary in XDIR=/usr |
| 212 | # einstall forces datadir, so we need to re-force it |
358 | # einstall forces datadir, so we need to re-force it |
| 213 | # datadir=${XDIR}/share \ |
359 | # datadir=${XDIR}/share \ |
| 214 | # mandir=${XDIR}/share/man \ |
360 | # mandir=${XDIR}/share/man \ |
| 215 | |
361 | |
|
|
362 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
363 | pushd "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
|
|
364 | git log ${GIT_TREE} > "${S}"/ChangeLog |
|
|
365 | popd |
|
|
366 | fi |
|
|
367 | |
|
|
368 | if [[ -e ${S}/ChangeLog ]]; then |
|
|
369 | dodoc ${S}/ChangeLog |
|
|
370 | fi |
|
|
371 | |
|
|
372 | # Make sure docs get compressed |
|
|
373 | prepalldocs |
|
|
374 | |
| 216 | # Don't install libtool archives for server modules |
375 | # Don't install libtool archives for server modules |
| 217 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
376 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
| 218 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
377 | find ${D}/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
| 219 | | xargs rm -f |
378 | | xargs rm -f |
| 220 | fi |
379 | fi |
|
|
380 | |
|
|
381 | # Don't install overlapping fonts.* files |
|
|
382 | # Generate them instead when possible |
|
|
383 | if [[ -n "${FONT}" ]]; then |
|
|
384 | remove_font_metadata |
|
|
385 | fi |
|
|
386 | |
|
|
387 | if [[ -n "${DRIVER}" ]]; then |
|
|
388 | install_driver_hwdata |
|
|
389 | fi |
| 221 | } |
390 | } |
| 222 | |
391 | |
| 223 | x-modular_pkg_preinst() { |
392 | x-modular_pkg_preinst() { |
| 224 | if [[ -n "${FONT}" ]]; then |
393 | # We no longer do anything here, but we can't remove it from the API |
| 225 | discover_font_dirs |
394 | : |
| 226 | fi |
|
|
| 227 | } |
395 | } |
| 228 | |
396 | |
| 229 | x-modular_pkg_postinst() { |
397 | x-modular_pkg_postinst() { |
| 230 | if [[ -n "${FONT}" ]]; then |
398 | if [[ -n "${FONT}" ]]; then |
| 231 | setup_fonts |
399 | setup_fonts |
| … | |
… | |
| 233 | } |
401 | } |
| 234 | |
402 | |
| 235 | x-modular_pkg_postrm() { |
403 | x-modular_pkg_postrm() { |
| 236 | if [[ -n "${FONT}" ]]; then |
404 | if [[ -n "${FONT}" ]]; then |
| 237 | cleanup_fonts |
405 | cleanup_fonts |
|
|
406 | font_pkg_postrm |
| 238 | fi |
407 | fi |
| 239 | } |
408 | } |
| 240 | |
409 | |
| 241 | cleanup_fonts() { |
410 | cleanup_fonts() { |
| 242 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
411 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
| … | |
… | |
| 272 | eend 0 |
441 | eend 0 |
| 273 | done |
442 | done |
| 274 | } |
443 | } |
| 275 | |
444 | |
| 276 | setup_fonts() { |
445 | setup_fonts() { |
| 277 | if [[ ! -n "${FONT_DIRS}" ]]; then |
446 | if [[ ! -n "${FONT_DIR}" ]]; then |
| 278 | msg="FONT_DIRS is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
447 | msg="FONT_DIR is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
| 279 | eerror "${msg}" |
448 | eerror "${msg}" |
| 280 | die "${msg}" |
449 | die "${msg}" |
| 281 | fi |
450 | fi |
| 282 | |
451 | |
| 283 | create_fonts_scale |
452 | create_fonts_scale |
| 284 | create_fonts_dir |
453 | create_fonts_dir |
| 285 | fix_font_permissions |
454 | fix_font_permissions |
| 286 | create_font_cache |
455 | create_font_cache |
| 287 | } |
456 | } |
| 288 | |
457 | |
|
|
458 | remove_font_metadata() { |
|
|
459 | local DIR |
|
|
460 | for DIR in ${FONT_DIR}; do |
|
|
461 | if [[ "${DIR}" != "Speedo" ]] && \ |
|
|
462 | [[ "${DIR}" != "CID" ]] ; then |
|
|
463 | # Delete font metadata files |
|
|
464 | # fonts.scale, fonts.dir, fonts.cache-1 |
|
|
465 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
|
|
466 | fi |
|
|
467 | done |
|
|
468 | } |
|
|
469 | |
|
|
470 | # Installs device-to-driver mappings for system-config-display |
|
|
471 | # and anything else that uses hwdata |
|
|
472 | install_driver_hwdata() { |
|
|
473 | insinto /usr/share/hwdata/videoaliases |
|
|
474 | for i in "${FILESDIR}"/*.xinf; do |
|
|
475 | # We need this for the case when none exist, |
|
|
476 | # so *.xinf doesn't expand |
|
|
477 | if [[ -e $i ]]; then |
|
|
478 | doins $i |
|
|
479 | fi |
|
|
480 | done |
|
|
481 | } |
|
|
482 | |
| 289 | discover_font_dirs() { |
483 | discover_font_dirs() { |
| 290 | pushd ${IMAGE}/usr/share/fonts |
484 | FONT_DIRS="${FONT_DIR}" |
| 291 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
|
|
| 292 | FONT_DIRS="$(echo ${FONT_DIRS} | sed -e 's:./::g')" |
|
|
| 293 | popd |
|
|
| 294 | } |
485 | } |
| 295 | |
486 | |
| 296 | create_fonts_scale() { |
487 | create_fonts_scale() { |
| 297 | ebegin "Creating fonts.scale files" |
488 | ebegin "Creating fonts.scale files" |
| 298 | local x |
489 | local x |
| 299 | for FONT_DIR in ${FONT_DIRS}; do |
490 | for DIR in ${FONT_DIR}; do |
| 300 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
491 | x=${ROOT}/usr/share/fonts/${DIR} |
| 301 | [ -z "$(ls ${x}/)" ] && continue |
492 | [[ -z "$(ls ${x}/)" ]] && continue |
| 302 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
493 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 303 | |
494 | |
| 304 | # Only generate .scale files if truetype, opentype or type1 |
495 | # Only generate .scale files if truetype, opentype or type1 |
| 305 | # fonts are present ... |
496 | # fonts are present ... |
| 306 | |
497 | |
| 307 | # First truetype (ttf,ttc) |
|
|
| 308 | # NOTE: ttmkfdir does NOT work on type1 fonts (#53753) |
|
|
| 309 | # Also, there is no way to regenerate Speedo/CID fonts.scale |
498 | # NOTE: There is no way to regenerate Speedo/CID fonts.scale |
| 310 | # <spyderous@gentoo.org> 2 August 2004 |
499 | # <dberkholz@gentoo.org> 2 August 2004 |
| 311 | if [ "${x/encodings}" = "${x}" -a \ |
500 | if [[ "${x/encodings}" = "${x}" ]] \ |
| 312 | -n "$(find ${x} -iname '*.tt[cf]' -print)" ]; then |
|
|
| 313 | if [ -x ${ROOT}/usr/bin/ttmkfdir ]; then |
|
|
| 314 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
|
|
| 315 | ${ROOT}/usr/bin/ttmkfdir -x 2 \ |
|
|
| 316 | -e ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
|
|
| 317 | -o ${x}/fonts.scale -d ${x} |
|
|
| 318 | # ttmkfdir fails on some stuff, so try mkfontscale if it does |
|
|
| 319 | local ttmkfdir_return=$? |
|
|
| 320 | else |
|
|
| 321 | # We didn't use ttmkfdir at all |
|
|
| 322 | local ttmkfdir_return=2 |
|
|
| 323 | fi |
|
|
| 324 | if [ ${ttmkfdir_return} -ne 0 ]; then |
|
|
| 325 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
|
|
| 326 | ${ROOT}/usr/bin/mkfontscale \ |
|
|
| 327 | -a /usr/share/fonts/encodings/encodings.dir \ |
|
|
| 328 | -- ${x} |
|
|
| 329 | fi |
|
|
| 330 | # Next type1 and opentype (pfa,pfb,otf,otc) |
|
|
| 331 | elif [ "${x/encodings}" = "${x}" -a \ |
|
|
| 332 | -n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]; then |
501 | && [[ -n "$(find ${x} -iname '*.[pot][ft][abcf]' -print)" ]]; then |
| 333 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
502 | mkfontscale \ |
| 334 | ${ROOT}/usr/bin/mkfontscale \ |
|
|
| 335 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
503 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
| 336 | -- ${x} |
504 | -- ${x} |
| 337 | fi |
505 | fi |
| 338 | done |
506 | done |
| 339 | eend 0 |
507 | eend 0 |
| 340 | } |
508 | } |
| 341 | |
509 | |
| 342 | create_fonts_dir() { |
510 | create_fonts_dir() { |
| 343 | ebegin "Generating fonts.dir files" |
511 | ebegin "Generating fonts.dir files" |
| 344 | for FONT_DIR in ${FONT_DIRS}; do |
512 | for DIR in ${FONT_DIR}; do |
| 345 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
513 | x=${ROOT}/usr/share/fonts/${DIR} |
| 346 | [ -z "$(ls ${x}/)" ] && continue |
514 | [[ -z "$(ls ${x}/)" ]] && continue |
| 347 | [ "$(ls ${x}/)" = "fonts.cache-1" ] && continue |
515 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 348 | |
516 | |
| 349 | if [ "${x/encodings}" = "${x}" ]; then |
517 | if [[ "${x/encodings}" = "${x}" ]]; then |
| 350 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
518 | mkfontdir \ |
| 351 | ${ROOT}/usr/bin/mkfontdir \ |
|
|
| 352 | -e ${ROOT}/usr/share/fonts/encodings \ |
519 | -e ${ROOT}/usr/share/fonts/encodings \ |
| 353 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
520 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
| 354 | -- ${x} |
521 | -- ${x} |
| 355 | fi |
522 | fi |
| 356 | done |
523 | done |
| 357 | eend 0 |
524 | eend 0 |
| 358 | } |
525 | } |
| 359 | |
526 | |
| 360 | fix_font_permissions() { |
527 | fix_font_permissions() { |
| 361 | ebegin "Fixing permissions" |
528 | ebegin "Fixing permissions" |
| 362 | for FONT_DIR in ${FONT_DIRS}; do |
529 | for DIR in ${FONT_DIR}; do |
| 363 | find ${ROOT}/usr/share/fonts/${FONT_DIR} -type f -name 'font.*' \ |
530 | find ${ROOT}/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
| 364 | -exec chmod 0644 {} \; |
531 | -exec chmod 0644 {} \; |
| 365 | done |
532 | done |
| 366 | eend 0 |
533 | eend 0 |
| 367 | } |
534 | } |
| 368 | |
535 | |
| 369 | create_font_cache() { |
536 | create_font_cache() { |
| 370 | # danarmak found out that fc-cache should be run AFTER all the above |
537 | font_pkg_postinst |
| 371 | # stuff, as otherwise the cache is invalid, and has to be run again |
|
|
| 372 | # as root anyway |
|
|
| 373 | if [ -x ${ROOT}/usr/bin/fc-cache ]; then |
|
|
| 374 | ebegin "Creating FC font cache" |
|
|
| 375 | HOME="/root" ${ROOT}/usr/bin/fc-cache |
|
|
| 376 | eend 0 |
|
|
| 377 | fi |
|
|
| 378 | } |
538 | } |
|
|
539 | |
|
|
540 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |