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