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