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