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