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