| 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.109 2009/05/14 12:40:55 remi Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Donnie Berkholz <spyderous@gentoo.org> |
5 | # @ECLASS: x-modular.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # Donnie Berkholz <dberkholz@gentoo.org>, x11@gentoo.org |
|
|
8 | # @BLURB: Reduces code duplication in the modularized X11 ebuilds. |
|
|
9 | # @DESCRIPTION: |
|
|
10 | # This eclass makes trivial X ebuilds possible for apps, fonts, drivers, |
|
|
11 | # and more. Many things that would normally be done in various functions |
|
|
12 | # can be accessed by setting variables instead, such as patching, |
|
|
13 | # running eautoreconf, passing options to configure and installing docs. |
| 6 | # |
14 | # |
| 7 | # This eclass is designed to reduce code duplication in the modularized X11 |
15 | # All you need to do in a basic ebuild is inherit this eclass and set |
| 8 | # ebuilds. |
16 | # DESCRIPTION, KEYWORDS and RDEPEND/DEPEND. If your package is hosted |
| 9 | # |
17 | # with the other X packages, you don't need to set SRC_URI. Pretty much |
| 10 | # Using this eclass: |
|
|
| 11 | # |
|
|
| 12 | # Inherit it. If you need to run autoreconf for any reason (e.g., your patches |
|
|
| 13 | # apply to the autotools files rather than configure), set SNAPSHOT="yes". Set |
|
|
| 14 | # CONFIGURE_OPTIONS to everything you want to pass to the configure script. |
|
|
| 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 | # IMPORTANT: Both SNAPSHOT and FONT_DIR must be set _before_ the inherit. |
|
|
| 25 | # |
|
|
| 26 | # Pretty much everything else should be automatic. |
18 | # everything else should be automatic. |
| 27 | |
19 | |
|
|
20 | if [[ ${PV} = 9999* ]]; then |
|
|
21 | GIT_ECLASS="git" |
|
|
22 | SNAPSHOT="yes" |
|
|
23 | SRC_URI="" |
|
|
24 | fi |
|
|
25 | |
|
|
26 | # If we're a font package, but not the font.alias one |
|
|
27 | FONT_ECLASS="" |
|
|
28 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
29 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
|
|
30 | && [[ "${PN}" != "font-alias" ]] \ |
|
|
31 | && [[ "${PN}" != "font-util" ]]; then |
|
|
32 | # Activate font code in the rest of the eclass |
|
|
33 | FONT="yes" |
|
|
34 | |
|
|
35 | # Whether to inherit the font eclass |
|
|
36 | FONT_ECLASS="font" |
|
|
37 | fi |
|
|
38 | |
|
|
39 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
|
|
40 | ${FONT_ECLASS} ${GIT_ECLASS} |
|
|
41 | |
| 28 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
42 | EXPORTED_FUNCTIONS="src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm" |
| 29 | |
43 | |
| 30 | inherit eutils libtool toolchain-funcs flag-o-matic |
44 | case "${EAPI:-0}" in |
|
|
45 | 0|1) |
|
|
46 | ;; |
|
|
47 | 2) |
|
|
48 | EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare src_configure" |
|
|
49 | ;; |
|
|
50 | *) |
|
|
51 | die "Unknown EAPI ${EAPI}" |
|
|
52 | ;; |
|
|
53 | esac |
| 31 | |
54 | |
| 32 | # Directory prefix to use for everything |
55 | # exports must be ALWAYS after inherit |
|
|
56 | EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS} |
|
|
57 | |
|
|
58 | # @ECLASS-VARIABLE: XDIR |
|
|
59 | # @DESCRIPTION: |
|
|
60 | # Directory prefix to use for everything. If you want to install to a |
|
|
61 | # non-default prefix (e.g., /opt/xorg), change XDIR. This has not been |
|
|
62 | # recently tested. You may need to uncomment the setting of datadir and |
|
|
63 | # mandir in x-modular_src_install() or add it back in if it's no longer |
|
|
64 | # there. You may also want to change the SLOT. |
| 33 | XDIR="/usr" |
65 | XDIR="/usr" |
| 34 | |
|
|
| 35 | # Set up default patchset version(s) if necessary |
|
|
| 36 | # x11-driver-patches |
|
|
| 37 | if [[ -z "${XDPVER}" ]]; then |
|
|
| 38 | XDPVER="1" |
|
|
| 39 | fi |
|
|
| 40 | |
66 | |
| 41 | IUSE="" |
67 | IUSE="" |
| 42 | HOMEPAGE="http://xorg.freedesktop.org/" |
68 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 43 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0/src/everything/${P}.tar.bz2 |
69 | |
| 44 | http://xorg.freedesktop.org/releases/X11R7.0-RC4/everything/${P}.tar.bz2 |
70 | if [[ -z ${SNAPSHOT} ]]; then |
| 45 | http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
71 | # @ECLASS-VARIABLE: SNAPSHOT |
| 46 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
72 | # @DESCRIPTION: |
| 47 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
73 | # If set to 'yes' and configure.ac exists, eautoreconf will run. Set |
| 48 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
74 | # before inheriting this eclass. |
|
|
75 | SNAPSHOT="no" |
|
|
76 | fi |
|
|
77 | |
|
|
78 | # Set up SRC_URI for individual modular releases |
|
|
79 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
|
|
80 | # @ECLASS-VARIABLE: MODULE |
|
|
81 | # @DESCRIPTION: |
|
|
82 | # The subdirectory to download source from. Possible settings are app, |
|
|
83 | # doc, data, util, driver, font, lib, proto, xserver. Set above the |
|
|
84 | # inherit to override the default autoconfigured module. |
|
|
85 | if [[ -z ${MODULE} ]]; then |
|
|
86 | MODULE="" |
|
|
87 | case ${CATEGORY} in |
|
|
88 | app-doc) MODULE="doc" ;; |
|
|
89 | media-fonts) MODULE="font" ;; |
|
|
90 | x11-apps|x11-wm) MODULE="app" ;; |
|
|
91 | x11-misc|x11-themes) MODULE="util" ;; |
|
|
92 | x11-drivers) MODULE="driver" ;; |
|
|
93 | x11-base) MODULE="xserver" ;; |
|
|
94 | x11-proto) MODULE="proto" ;; |
|
|
95 | x11-libs) MODULE="lib" ;; |
|
|
96 | esac |
|
|
97 | fi |
|
|
98 | |
|
|
99 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
100 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${MODULE}/${PN}" |
|
|
101 | else |
|
|
102 | SRC_URI="${SRC_URI} ${BASE_INDIVIDUAL_URI}/${MODULE}/${P}.tar.bz2" |
|
|
103 | fi |
|
|
104 | |
| 49 | SLOT="0" |
105 | SLOT="0" |
| 50 | |
106 | |
| 51 | # Set the license for the package. This can be overridden by setting |
107 | # Set the license for the package. This can be overridden by setting |
| 52 | # LICENSE after the inherit. |
108 | # LICENSE after the inherit. |
| 53 | LICENSE=${PN} |
109 | LICENSE=${PN} |
| 54 | |
110 | |
| 55 | # Set up shared dependencies |
111 | # Set up shared dependencies |
| 56 | if [[ -n "${SNAPSHOT}" ]]; then |
112 | if [[ -n "${SNAPSHOT}" ]]; then |
| 57 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
113 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 58 | DEPEND="${DEPEND} |
114 | DEPEND="${DEPEND} |
| 59 | >=sys-devel/autoconf-2.57 |
|
|
| 60 | >=sys-devel/automake-1.7 |
|
|
| 61 | >=sys-devel/libtool-1.5 |
115 | >=sys-devel/libtool-1.5 |
| 62 | >=sys-devel/m4-1.4" |
116 | >=sys-devel/m4-1.4" |
|
|
117 | WANT_AUTOCONF="latest" |
|
|
118 | WANT_AUTOMAKE="latest" |
| 63 | fi |
119 | fi |
| 64 | |
120 | |
| 65 | # If we're a font package, but not the font.alias one |
121 | if [[ -n "${FONT}" ]]; then |
| 66 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
| 67 | && [[ "${PN}" != "font-alias" ]] \ |
|
|
| 68 | && [[ "${PN}" != "font-util" ]]; then |
|
|
| 69 | # Activate font code in the rest of the eclass |
|
|
| 70 | FONT="yes" |
|
|
| 71 | |
|
|
| 72 | RDEPEND="${RDEPEND} |
122 | RDEPEND="${RDEPEND} |
| 73 | media-fonts/encodings |
123 | media-fonts/encodings |
| 74 | x11-apps/mkfontscale |
124 | x11-apps/mkfontscale |
| 75 | x11-apps/mkfontdir" |
125 | x11-apps/mkfontdir" |
| 76 | PDEPEND="${PDEPEND} |
126 | PDEPEND="${PDEPEND} |
| … | |
… | |
| 79 | # Starting with 7.0RC3, we can specify the font directory |
129 | # Starting with 7.0RC3, we can specify the font directory |
| 80 | # But oddly, we can't do the same for encodings or font-alias |
130 | # But oddly, we can't do the same for encodings or font-alias |
| 81 | |
131 | |
| 82 | # Wrap in `if` so ebuilds can set it too |
132 | # Wrap in `if` so ebuilds can set it too |
| 83 | if [[ -z ${FONT_DIR} ]]; then |
133 | if [[ -z ${FONT_DIR} ]]; then |
|
|
134 | # @ECLASS-VARIABLE: FONT_DIR |
|
|
135 | # @DESCRIPTION: |
|
|
136 | # If you're creating a font package and the suffix of PN is not equal to |
|
|
137 | # the subdirectory of /usr/share/fonts/ it should install into, set |
|
|
138 | # FONT_DIR to that directory or directories. Set before inheriting this |
|
|
139 | # eclass. |
| 84 | FONT_DIR=${PN##*-} |
140 | FONT_DIR=${PN##*-} |
| 85 | |
141 | |
| 86 | fi |
142 | fi |
| 87 | |
143 | |
| 88 | # Fix case of font directories |
144 | # Fix case of font directories |
| … | |
… | |
| 93 | |
149 | |
| 94 | # Set up configure option |
150 | # Set up configure option |
| 95 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
151 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
| 96 | |
152 | |
| 97 | if [[ -n "${FONT}" ]]; then |
153 | if [[ -n "${FONT}" ]]; then |
| 98 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]]; then |
154 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]] || [[ ${PN##*-} = cyrillic ]]; then |
| 99 | IUSE="${IUSE} nls" |
155 | IUSE="${IUSE} nls" |
| 100 | fi |
156 | fi |
| 101 | fi |
157 | fi |
| 102 | fi |
158 | fi |
| 103 | |
159 | |
| 104 | # If we're a driver package |
160 | # If we're a driver package |
| 105 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
161 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 106 | # Enable driver code in the rest of the eclass |
162 | # Enable driver code in the rest of the eclass |
| 107 | DRIVER="yes" |
163 | DRIVER="yes" |
| 108 | |
|
|
| 109 | # Add driver patchset to SRC_URI |
|
|
| 110 | SRC_URI="${SRC_URI} |
|
|
| 111 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
| 112 | fi |
164 | fi |
| 113 | |
165 | |
| 114 | # Debugging -- ignore packages that can't be built with debugging |
166 | # Debugging -- ignore packages that can't be built with debugging |
| 115 | if [[ -z "${FONT}" ]] \ |
167 | if [[ -z "${FONT}" ]] \ |
| 116 | || [[ "${PN/app-doc}" != "${PN}" ]] \ |
168 | && [[ "${CATEGORY/app-doc}" = "${CATEGORY}" ]] \ |
| 117 | || [[ "${PN/x11-proto}" != "${PN}" ]] \ |
169 | && [[ "${CATEGORY/x11-proto}" = "${CATEGORY}" ]] \ |
| 118 | || [[ "${PN/util-macros}" != "${PN}" ]] \ |
170 | && [[ "${PN/util-macros}" = "${PN}" ]] \ |
| 119 | || [[ "${PN/xbitmaps}" != "${PN}" ]] \ |
171 | && [[ "${PN/xbitmaps}" = "${PN}" ]] \ |
| 120 | || [[ "${PN/xkbdata}" != "${PN}" ]] \ |
172 | && [[ "${PN/xkbdata}" = "${PN}" ]] \ |
| 121 | || [[ "${PN/xorg-cf-files}" != "${PN}" ]] \ |
173 | && [[ "${PN/xorg-cf-files}" = "${PN}" ]] \ |
| 122 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
174 | && [[ "${PN/xcursor}" = "${PN}" ]] \ |
| 123 | ; then |
175 | ; then |
| 124 | DEBUGGABLE="yes" |
176 | DEBUGGABLE="yes" |
| 125 | IUSE="${IUSE} debug" |
177 | IUSE="${IUSE} debug" |
| 126 | if use debug; then |
|
|
| 127 | RESTRICT="${RESTRICT} nostrip" |
|
|
| 128 | fi |
|
|
| 129 | fi |
178 | fi |
| 130 | |
179 | |
| 131 | DEPEND="${DEPEND} |
180 | DEPEND="${DEPEND} |
| 132 | >=dev-util/pkgconfig-0.18" |
181 | >=dev-util/pkgconfig-0.18" |
| 133 | |
182 | |
| 134 | if [[ "${PN/util-macros}" != "${PN}" ]]; then |
183 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
| 135 | DEPEND="${DEPEND} |
184 | DEPEND="${DEPEND} |
| 136 | >=x11-misc/util-macros-0.99.2" |
185 | >=x11-misc/util-macros-0.99.2 |
|
|
186 | >=sys-devel/binutils-2.16.1-r3" |
| 137 | fi |
187 | fi |
| 138 | |
188 | |
| 139 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
|
|
| 140 | RDEPEND="${RDEPEND} |
189 | RDEPEND="${RDEPEND} |
| 141 | !<=x11-base/xorg-x11-6.9 |
190 | !<=x11-base/xorg-x11-6.9" |
| 142 | >=sys-apps/man-1.6b-r2" |
|
|
| 143 | # Provides virtual/x11 for temporary use until packages are ported |
191 | # Provides virtual/x11 for temporary use until packages are ported |
| 144 | # x11-base/x11-env" |
192 | # x11-base/x11-env" |
| 145 | |
193 | |
|
|
194 | # @FUNCTION: x-modular_specs_check |
|
|
195 | # @USAGE: |
|
|
196 | # @DESCRIPTION: |
|
|
197 | # Make any necessary changes related to gcc specs (generally hardened) |
|
|
198 | x-modular_specs_check() { |
|
|
199 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
200 | append-ldflags -Wl,-z,lazy |
|
|
201 | # (#116698) breaks loading |
|
|
202 | filter-ldflags -Wl,-z,now |
|
|
203 | fi |
|
|
204 | } |
|
|
205 | |
|
|
206 | # @FUNCTION: x-modular_dri_check |
|
|
207 | # @USAGE: |
|
|
208 | # @DESCRIPTION: |
|
|
209 | # Ensures the server supports DRI if building a driver with DRI support |
|
|
210 | x-modular_dri_check() { |
|
|
211 | # (#120057) Enabling DRI in drivers requires that the server was built with |
|
|
212 | # support for it |
|
|
213 | # Starting with xorg-server 1.5.3, DRI support is always enabled unless |
|
|
214 | # USE=minimal is set (see bug #252084) |
|
|
215 | if [[ -n "${DRIVER}" ]]; then |
|
|
216 | if has dri ${IUSE} && use dri; then |
|
|
217 | einfo "Checking for direct rendering capabilities ..." |
|
|
218 | if has_version '>=x11-base/xorg-server-1.5.3'; then |
|
|
219 | if built_with_use x11-base/xorg-server minimal; then |
|
|
220 | die "You must build x11-base/xorg-server with USE=-minimal." |
|
|
221 | fi |
|
|
222 | else |
|
|
223 | if ! built_with_use x11-base/xorg-server dri; then |
|
|
224 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
225 | fi |
|
|
226 | fi |
|
|
227 | fi |
|
|
228 | fi |
|
|
229 | } |
|
|
230 | |
|
|
231 | # @FUNCTION: x-modular_server_supports_drivers_check |
|
|
232 | # @USAGE: |
|
|
233 | # @DESCRIPTION: |
|
|
234 | # Ensures the server SDK is installed if a driver is being built |
|
|
235 | x-modular_server_supports_drivers_check() { |
|
|
236 | # (#135873) Only certain servers will actually use or be capable of |
|
|
237 | # building external drivers, including binary drivers. |
|
|
238 | if [[ -n "${DRIVER}" ]]; then |
|
|
239 | if has_version '>=x11-base/xorg-server-1.1'; then |
|
|
240 | if ! built_with_use x11-base/xorg-server xorg; then |
|
|
241 | eerror "x11-base/xorg-server is not built with support for external drivers." |
|
|
242 | die "You must build x11-base/xorg-server with USE=xorg." |
|
|
243 | fi |
|
|
244 | fi |
|
|
245 | fi |
|
|
246 | } |
|
|
247 | |
|
|
248 | # @FUNCTION: x-modular_unpack_source |
|
|
249 | # @USAGE: |
|
|
250 | # @DESCRIPTION: |
|
|
251 | # Simply unpack source code. Nothing else. |
| 146 | x-modular_unpack_source() { |
252 | x-modular_unpack_source() { |
|
|
253 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
254 | git_src_unpack |
|
|
255 | else |
| 147 | unpack ${A} |
256 | unpack ${A} |
|
|
257 | fi |
| 148 | cd ${S} |
258 | cd "${S}" |
| 149 | |
259 | |
| 150 | if [[ -n ${FONT_OPTIONS} ]]; then |
260 | if [[ -n ${FONT_OPTIONS} ]]; then |
| 151 | einfo "Detected font directory: ${FONT_DIR}" |
261 | einfo "Detected font directory: ${FONT_DIR}" |
| 152 | fi |
262 | fi |
| 153 | } |
263 | } |
| 154 | |
264 | |
|
|
265 | # @FUNCTION: x-modular_patch_source |
|
|
266 | # @USAGE: |
|
|
267 | # @DESCRIPTION: |
|
|
268 | # Apply all patches |
| 155 | x-modular_patch_source() { |
269 | x-modular_patch_source() { |
| 156 | # Use standardized names and locations with bulk patching |
270 | # Use standardized names and locations with bulk patching |
| 157 | # Patch directory is ${WORKDIR}/patch |
271 | # Patch directory is ${WORKDIR}/patch |
| 158 | # See epatch() in eutils.eclass for more documentation |
272 | # See epatch() in eutils.eclass for more documentation |
| 159 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
273 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
| 160 | EPATCH_SUFFIX="patch" |
274 | EPATCH_SUFFIX="patch" |
| 161 | fi |
275 | fi |
| 162 | |
276 | |
| 163 | # If this is a driver package we need to fix man page install location. |
277 | # @VARIABLE: PATCHES |
| 164 | # Running autoreconf will use the patched util-macros to make the |
278 | # @DESCRIPTION: |
| 165 | # change for us, so we only need to patch if it is not going to run. |
279 | # If you have any patches to apply, set PATCHES to their locations and epatch |
| 166 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]; then |
280 | # will apply them. It also handles epatch-style bulk patches, if you know how to |
| 167 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
281 | # use them and set the correct variables. If you don't, read eutils.eclass. |
| 168 | fi |
282 | if [[ ${#PATCHES[@]} -gt 1 ]]; then |
| 169 | |
283 | for x in "${PATCHES[@]}"; do |
| 170 | # For specific list of patches |
284 | epatch "${x}" |
|
|
285 | done |
| 171 | if [[ -n "${PATCHES}" ]] ; then |
286 | elif [[ -n "${PATCHES}" ]]; then |
| 172 | for PATCH in ${PATCHES} |
287 | for x in ${PATCHES}; do |
| 173 | do |
|
|
| 174 | epatch ${PATCH} |
288 | epatch "${x}" |
| 175 | done |
289 | done |
| 176 | # For non-default directory bulk patching |
290 | # For non-default directory bulk patching |
| 177 | elif [[ -n "${PATCH_LOC}" ]] ; then |
291 | elif [[ -n "${PATCH_LOC}" ]] ; then |
| 178 | epatch ${PATCH_LOC} |
292 | epatch ${PATCH_LOC} |
| 179 | # For standard bulk patching |
293 | # For standard bulk patching |
| 180 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
294 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
| 181 | epatch |
295 | epatch |
| 182 | fi |
296 | fi |
| 183 | } |
297 | } |
| 184 | |
298 | |
|
|
299 | # @FUNCTION: x-modular_reconf_source |
|
|
300 | # @USAGE: |
|
|
301 | # @DESCRIPTION: |
|
|
302 | # Run eautoreconf if necessary, and run elibtoolize. |
| 185 | x-modular_reconf_source() { |
303 | x-modular_reconf_source() { |
| 186 | # Run autoreconf for CVS snapshots only |
|
|
| 187 | if [[ "${SNAPSHOT}" = "yes" ]] |
304 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 188 | then |
305 | then |
| 189 | # If possible, generate configure if it doesn't exist |
306 | # If possible, generate configure if it doesn't exist |
| 190 | if [ -f "${S}/configure.ac" ] |
307 | if [ -f "./configure.ac" ] |
| 191 | then |
308 | then |
| 192 | einfo "Running autoreconf..." |
309 | eautoreconf |
| 193 | autoreconf -v --force --install |
|
|
| 194 | fi |
|
|
| 195 | fi |
310 | fi |
| 196 | |
|
|
| 197 | } |
|
|
| 198 | |
|
|
| 199 | x-modular_src_unpack() { |
|
|
| 200 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
| 201 | if gcc-specs-now; then |
|
|
| 202 | msg="Do not emerge ${PN} without vanilla gcc!" |
|
|
| 203 | eerror "$msg" |
|
|
| 204 | die "$msg" |
|
|
| 205 | fi |
311 | fi |
| 206 | fi |
|
|
| 207 | |
|
|
| 208 | x-modular_unpack_source |
|
|
| 209 | x-modular_patch_source |
|
|
| 210 | x-modular_reconf_source |
|
|
| 211 | |
312 | |
| 212 | # Joshua Baergen - October 23, 2005 |
313 | # Joshua Baergen - October 23, 2005 |
| 213 | # Fix shared lib issues on MIPS, FBSD, etc etc |
314 | # Fix shared lib issues on MIPS, FBSD, etc etc |
| 214 | elibtoolize |
315 | elibtoolize |
| 215 | } |
316 | } |
| 216 | |
317 | |
|
|
318 | # @FUNCTION: x-modular_src_prepare |
|
|
319 | # @USAGE: |
|
|
320 | # @DESCRIPTION: |
|
|
321 | # Prepare a package after unpacking, performing all X-related tasks. |
|
|
322 | x-modular_src_prepare() { |
|
|
323 | [[ -n ${GIT_ECLASS} ]] && has src_prepare ${EXPORTED_FUNCTIONS} \ |
|
|
324 | && git_src_prepare |
|
|
325 | x-modular_patch_source |
|
|
326 | x-modular_reconf_source |
|
|
327 | } |
|
|
328 | |
|
|
329 | # @FUNCTION: x-modular_src_unpack |
|
|
330 | # @USAGE: |
|
|
331 | # @DESCRIPTION: |
|
|
332 | # Unpack a package, performing all X-related tasks. |
|
|
333 | x-modular_src_unpack() { |
|
|
334 | x-modular_specs_check |
|
|
335 | x-modular_server_supports_drivers_check |
|
|
336 | x-modular_dri_check |
|
|
337 | x-modular_unpack_source |
|
|
338 | has src_prepare ${EXPORTED_FUNCTIONS} || x-modular_src_prepare |
|
|
339 | } |
|
|
340 | |
|
|
341 | # @FUNCTION: x-modular_font_configure |
|
|
342 | # @USAGE: |
|
|
343 | # @DESCRIPTION: |
|
|
344 | # If a font package, perform any necessary configuration steps |
| 217 | x-modular_font_configure() { |
345 | x-modular_font_configure() { |
| 218 | if [[ -n "${FONT}" ]]; then |
346 | if [[ -n "${FONT}" ]]; then |
| 219 | # Might be worth adding an option to configure your desired font |
347 | # Might be worth adding an option to configure your desired font |
| 220 | # and exclude all others. Also, should this USE be nls or minimal? |
348 | # and exclude all others. Also, should this USE be nls or minimal? |
| 221 | if ! use nls; then |
349 | if ! use nls; then |
| … | |
… | |
| 239 | --disable-koi8-r" |
367 | --disable-koi8-r" |
| 240 | fi |
368 | fi |
| 241 | fi |
369 | fi |
| 242 | } |
370 | } |
| 243 | |
371 | |
|
|
372 | # @FUNCTION: x-modular_debug_setup |
|
|
373 | # @USAGE: |
|
|
374 | # @DESCRIPTION: |
|
|
375 | # Set up CFLAGS for a debug build |
| 244 | x-modular_debug_setup() { |
376 | x-modular_debug_setup() { |
| 245 | if [[ -n "${DEBUGGABLE}" ]]; then |
377 | if [[ -n "${DEBUGGABLE}" ]]; then |
| 246 | if use debug; then |
378 | if use debug; then |
| 247 | strip-flags |
379 | strip-flags |
| 248 | append-flags -g |
380 | append-flags -g |
| 249 | fi |
381 | fi |
| 250 | fi |
382 | fi |
| 251 | } |
383 | } |
| 252 | |
384 | |
|
|
385 | # @FUNCTION: x-modular_src_configure |
|
|
386 | # @USAGE: |
|
|
387 | # @DESCRIPTION: |
|
|
388 | # Perform any necessary pre-configuration steps, then run configure |
| 253 | x-modular_src_configure() { |
389 | x-modular_src_configure() { |
| 254 | x-modular_font_configure |
390 | x-modular_font_configure |
| 255 | x-modular_debug_setup |
391 | x-modular_debug_setup |
| 256 | |
392 | |
|
|
393 | # @VARIABLE: CONFIGURE_OPTIONS |
|
|
394 | # @DESCRIPTION: |
|
|
395 | # Any options to pass to configure |
|
|
396 | [[ -n ${CONFIGURE_OPTIONS} ]] |
|
|
397 | |
| 257 | # If prefix isn't set here, .pc files cause problems |
398 | # If prefix isn't set here, .pc files cause problems |
| 258 | if [[ -x ./configure ]]; then |
399 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
| 259 | econf --prefix=${XDIR} \ |
400 | econf --prefix=${XDIR} \ |
| 260 | --datadir=${XDIR}/share \ |
401 | --datadir=${XDIR}/share \ |
| 261 | ${FONT_OPTIONS} \ |
402 | ${FONT_OPTIONS} \ |
| 262 | ${DRIVER_OPTIONS} \ |
403 | ${DRIVER_OPTIONS} \ |
| 263 | ${CONFIGURE_OPTIONS} |
404 | ${CONFIGURE_OPTIONS} |
| 264 | fi |
405 | fi |
| 265 | } |
406 | } |
| 266 | |
407 | |
|
|
408 | # @FUNCTION: x-modular_src_make |
|
|
409 | # @USAGE: |
|
|
410 | # @DESCRIPTION: |
|
|
411 | # Run make. |
| 267 | x-modular_src_make() { |
412 | x-modular_src_make() { |
| 268 | emake || die "emake failed" |
413 | emake || die "emake failed" |
| 269 | } |
414 | } |
| 270 | |
415 | |
|
|
416 | # @FUNCTION: x-modular_src_compile |
|
|
417 | # @USAGE: |
|
|
418 | # @DESCRIPTION: |
|
|
419 | # Compile a package, performing all X-related tasks. |
| 271 | x-modular_src_compile() { |
420 | x-modular_src_compile() { |
| 272 | x-modular_src_configure |
421 | has src_configure ${EXPORTED_FUNCTIONS} || x-modular_src_configure |
| 273 | x-modular_src_make |
422 | x-modular_src_make |
| 274 | } |
423 | } |
| 275 | |
424 | |
|
|
425 | # @FUNCTION: x-modular_src_install |
|
|
426 | # @USAGE: |
|
|
427 | # @DESCRIPTION: |
|
|
428 | # Install a built package to ${D}, performing any necessary steps. |
|
|
429 | # Creates a ChangeLog from git if using live ebuilds. |
| 276 | x-modular_src_install() { |
430 | x-modular_src_install() { |
| 277 | # Install everything to ${XDIR} |
431 | # Install everything to ${XDIR} |
|
|
432 | if [[ ${CATEGORY} = x11-proto ]]; then |
| 278 | make \ |
433 | make \ |
|
|
434 | ${PN/proto/}docdir=/usr/share/doc/${PF} \ |
| 279 | DESTDIR="${D}" \ |
435 | DESTDIR="${D}" \ |
| 280 | install |
436 | install \ |
|
|
437 | || die |
|
|
438 | else |
|
|
439 | make \ |
|
|
440 | DESTDIR="${D}" \ |
|
|
441 | install \ |
|
|
442 | || die |
|
|
443 | fi |
| 281 | # Shouldn't be necessary in XDIR=/usr |
444 | # Shouldn't be necessary in XDIR=/usr |
| 282 | # einstall forces datadir, so we need to re-force it |
445 | # einstall forces datadir, so we need to re-force it |
| 283 | # datadir=${XDIR}/share \ |
446 | # datadir=${XDIR}/share \ |
| 284 | # mandir=${XDIR}/share/man \ |
447 | # mandir=${XDIR}/share/man \ |
| 285 | |
448 | |
|
|
449 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
450 | pushd "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
|
|
451 | git log ${GIT_TREE} > "${S}"/ChangeLog |
|
|
452 | popd |
|
|
453 | fi |
|
|
454 | |
|
|
455 | if [[ -e ${S}/ChangeLog ]]; then |
|
|
456 | dodoc "${S}"/ChangeLog |
|
|
457 | fi |
|
|
458 | # @VARIABLE: DOCS |
|
|
459 | # @DESCRIPTION: |
|
|
460 | # Any documentation to install |
|
|
461 | [[ -n ${DOCS} ]] && dodoc ${DOCS} |
|
|
462 | |
| 286 | # Don't install libtool archives for server modules |
463 | # Don't install libtool archives for server modules |
| 287 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
464 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
| 288 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
465 | find "${D}"/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
| 289 | | xargs rm -f |
466 | | xargs rm -f |
| 290 | fi |
467 | fi |
| 291 | } |
|
|
| 292 | |
468 | |
|
|
469 | if [[ -n "${FONT}" ]]; then |
|
|
470 | remove_font_metadata |
|
|
471 | fi |
|
|
472 | |
|
|
473 | if [[ -n "${DRIVER}" ]]; then |
|
|
474 | install_driver_hwdata |
|
|
475 | fi |
|
|
476 | } |
|
|
477 | |
|
|
478 | # @FUNCTION: x-modular_pkg_preinst |
|
|
479 | # @USAGE: |
|
|
480 | # @DESCRIPTION: |
|
|
481 | # This function doesn't do anything right now, but it may in the future. |
| 293 | x-modular_pkg_preinst() { |
482 | x-modular_pkg_preinst() { |
| 294 | if [[ -n "${FONT}" ]]; then |
483 | # We no longer do anything here, but we can't remove it from the API |
| 295 | discover_font_dirs |
484 | : |
| 296 | fi |
|
|
| 297 | } |
485 | } |
| 298 | |
486 | |
|
|
487 | # @FUNCTION: x-modular_pkg_postinst |
|
|
488 | # @USAGE: |
|
|
489 | # @DESCRIPTION: |
|
|
490 | # Run X-specific post-installation tasks on the live filesystem. The |
|
|
491 | # only task right now is some setup for font packages. |
| 299 | x-modular_pkg_postinst() { |
492 | x-modular_pkg_postinst() { |
| 300 | if [[ -n "${FONT}" ]]; then |
493 | if [[ -n "${FONT}" ]]; then |
| 301 | setup_fonts |
494 | setup_fonts |
| 302 | fi |
495 | fi |
| 303 | } |
496 | } |
| 304 | |
497 | |
|
|
498 | # @FUNCTION: x-modular_pkg_postrm |
|
|
499 | # @USAGE: |
|
|
500 | # @DESCRIPTION: |
|
|
501 | # Run X-specific post-removal tasks on the live filesystem. The only |
|
|
502 | # task right now is some cleanup for font packages. |
| 305 | x-modular_pkg_postrm() { |
503 | x-modular_pkg_postrm() { |
| 306 | if [[ -n "${FONT}" ]]; then |
504 | if [[ -n "${FONT}" ]]; then |
| 307 | cleanup_fonts |
505 | cleanup_fonts |
|
|
506 | font_pkg_postrm |
| 308 | fi |
507 | fi |
| 309 | } |
508 | } |
| 310 | |
509 | |
|
|
510 | # @FUNCTION: cleanup_fonts |
|
|
511 | # @USAGE: |
|
|
512 | # @DESCRIPTION: |
|
|
513 | # Get rid of font directories that only contain generated files |
| 311 | cleanup_fonts() { |
514 | cleanup_fonts() { |
| 312 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
515 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
| 313 | for DIR in ${FONT_DIR}; do |
516 | for DIR in ${FONT_DIR}; do |
| 314 | unset KEEP_FONTDIR |
517 | unset KEEP_FONTDIR |
| 315 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
518 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
| … | |
… | |
| 341 | fi |
544 | fi |
| 342 | eend 0 |
545 | eend 0 |
| 343 | done |
546 | done |
| 344 | } |
547 | } |
| 345 | |
548 | |
|
|
549 | # @FUNCTION: setup_fonts |
|
|
550 | # @USAGE: |
|
|
551 | # @DESCRIPTION: |
|
|
552 | # Generates needed files for fonts and fixes font permissions |
| 346 | setup_fonts() { |
553 | setup_fonts() { |
| 347 | if [[ ! -n "${FONT_DIRS}" ]]; then |
554 | 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." |
555 | msg="FONT_DIR is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
| 349 | eerror "${msg}" |
556 | eerror "${msg}" |
| 350 | die "${msg}" |
557 | die "${msg}" |
| 351 | fi |
558 | fi |
| 352 | |
559 | |
| 353 | create_fonts_scale |
560 | create_fonts_scale |
| 354 | create_fonts_dir |
561 | create_fonts_dir |
| 355 | fix_font_permissions |
562 | fix_font_permissions |
| 356 | create_font_cache |
563 | create_font_cache |
| 357 | } |
564 | } |
| 358 | |
565 | |
|
|
566 | # @FUNCTION: remove_font_metadata |
|
|
567 | # @USAGE: |
|
|
568 | # @DESCRIPTION: |
|
|
569 | # Don't let the package install generated font files that may overlap |
|
|
570 | # with other packages. Instead, they're generated in pkg_postinst(). |
|
|
571 | remove_font_metadata() { |
|
|
572 | local DIR |
|
|
573 | for DIR in ${FONT_DIR}; do |
|
|
574 | if [[ "${DIR}" != "Speedo" ]] && \ |
|
|
575 | [[ "${DIR}" != "CID" ]] ; then |
|
|
576 | # Delete font metadata files |
|
|
577 | # fonts.scale, fonts.dir, fonts.cache-1 |
|
|
578 | rm -f "${D}"/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
|
|
579 | fi |
|
|
580 | done |
|
|
581 | } |
|
|
582 | |
|
|
583 | # @FUNCTION: install_driver_hwdata |
|
|
584 | # @USAGE: |
|
|
585 | # @DESCRIPTION: |
|
|
586 | # Installs device-to-driver mappings for system-config-display and |
|
|
587 | # anything else that uses hwdata. |
|
|
588 | install_driver_hwdata() { |
|
|
589 | insinto /usr/share/hwdata/videoaliases |
|
|
590 | for i in "${FILESDIR}"/*.xinf; do |
|
|
591 | # We need this for the case when none exist, |
|
|
592 | # so *.xinf doesn't expand |
|
|
593 | if [[ -e $i ]]; then |
|
|
594 | doins $i |
|
|
595 | fi |
|
|
596 | done |
|
|
597 | } |
|
|
598 | |
|
|
599 | # @FUNCTION: discover_font_dirs |
|
|
600 | # @USAGE: |
|
|
601 | # @DESCRIPTION: |
|
|
602 | # Deprecated. Sets up the now-unused FONT_DIRS variable. |
| 359 | discover_font_dirs() { |
603 | discover_font_dirs() { |
| 360 | pushd ${IMAGE}/usr/share/fonts |
604 | 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 | } |
605 | } |
| 365 | |
606 | |
|
|
607 | # @FUNCTION: create_fonts_scale |
|
|
608 | # @USAGE: |
|
|
609 | # @DESCRIPTION: |
|
|
610 | # Create fonts.scale file, used by the old server-side fonts subsystem. |
| 366 | create_fonts_scale() { |
611 | create_fonts_scale() { |
| 367 | ebegin "Creating fonts.scale files" |
612 | ebegin "Creating fonts.scale files" |
| 368 | local x |
613 | local x |
| 369 | for FONT_DIR in ${FONT_DIRS}; do |
614 | for DIR in ${FONT_DIR}; do |
| 370 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
615 | x=${ROOT}/usr/share/fonts/${DIR} |
| 371 | [[ -z "$(ls ${x}/)" ]] && continue |
616 | [[ -z "$(ls ${x}/)" ]] && continue |
| 372 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
617 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 373 | |
618 | |
| 374 | # Only generate .scale files if truetype, opentype or type1 |
619 | # Only generate .scale files if truetype, opentype or type1 |
| 375 | # fonts are present ... |
620 | # fonts are present ... |
| 376 | |
621 | |
| 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 |
622 | # NOTE: There is no way to regenerate Speedo/CID fonts.scale |
| 380 | # <spyderous@gentoo.org> 2 August 2004 |
623 | # <dberkholz@gentoo.org> 2 August 2004 |
| 381 | if [[ "${x/encodings}" = "${x}" ]] \ |
624 | 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 |
625 | && [[ -n "$(find ${x} -iname '*.[pot][ft][abcf]' -print)" ]]; then |
| 403 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
626 | mkfontscale \ |
| 404 | ${ROOT}/usr/bin/mkfontscale \ |
|
|
| 405 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
627 | -a "${ROOT}"/usr/share/fonts/encodings/encodings.dir \ |
| 406 | -- ${x} |
628 | -- ${x} |
| 407 | fi |
629 | fi |
| 408 | done |
630 | done |
| 409 | eend 0 |
631 | eend 0 |
| 410 | } |
632 | } |
| 411 | |
633 | |
|
|
634 | # @FUNCTION: create_fonts_dir |
|
|
635 | # @USAGE: |
|
|
636 | # @DESCRIPTION: |
|
|
637 | # Create fonts.dir file, used by the old server-side fonts subsystem. |
| 412 | create_fonts_dir() { |
638 | create_fonts_dir() { |
| 413 | ebegin "Generating fonts.dir files" |
639 | ebegin "Generating fonts.dir files" |
| 414 | for FONT_DIR in ${FONT_DIRS}; do |
640 | for DIR in ${FONT_DIR}; do |
| 415 | x=${ROOT}/usr/share/fonts/${FONT_DIR} |
641 | x=${ROOT}/usr/share/fonts/${DIR} |
| 416 | [[ -z "$(ls ${x}/)" ]] && continue |
642 | [[ -z "$(ls ${x}/)" ]] && continue |
| 417 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
643 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 418 | |
644 | |
| 419 | if [[ "${x/encodings}" = "${x}" ]]; then |
645 | if [[ "${x/encodings}" = "${x}" ]]; then |
| 420 | LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \ |
646 | mkfontdir \ |
| 421 | ${ROOT}/usr/bin/mkfontdir \ |
|
|
| 422 | -e ${ROOT}/usr/share/fonts/encodings \ |
647 | -e "${ROOT}"/usr/share/fonts/encodings \ |
| 423 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
648 | -e "${ROOT}"/usr/share/fonts/encodings/large \ |
| 424 | -- ${x} |
649 | -- ${x} |
| 425 | fi |
650 | fi |
| 426 | done |
651 | done |
| 427 | eend 0 |
652 | eend 0 |
| 428 | } |
653 | } |
| 429 | |
654 | |
|
|
655 | # @FUNCTION: fix_font_permissions |
|
|
656 | # @USAGE: |
|
|
657 | # @DESCRIPTION: |
|
|
658 | # Font files should have 644 permissions. Ensure this is the case. |
| 430 | fix_font_permissions() { |
659 | fix_font_permissions() { |
| 431 | ebegin "Fixing permissions" |
660 | ebegin "Fixing permissions" |
| 432 | for FONT_DIR in ${FONT_DIRS}; do |
661 | for DIR in ${FONT_DIR}; do |
| 433 | find ${ROOT}/usr/share/fonts/${FONT_DIR} -type f -name 'font.*' \ |
662 | find "${ROOT}"/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
| 434 | -exec chmod 0644 {} \; |
663 | -exec chmod 0644 {} \; |
| 435 | done |
664 | done |
| 436 | eend 0 |
665 | eend 0 |
| 437 | } |
666 | } |
| 438 | |
667 | |
|
|
668 | # @FUNCTION: create_font_cache |
|
|
669 | # @USAGE: |
|
|
670 | # @DESCRIPTION: |
|
|
671 | # Create fonts.cache-1 files, used by the new client-side fonts |
|
|
672 | # subsystem. |
| 439 | create_font_cache() { |
673 | create_font_cache() { |
| 440 | # danarmak found out that fc-cache should be run AFTER all the above |
674 | 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 | } |
675 | } |