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