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