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