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