| 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.29 2005/12/09 23:32:27 joshuabaergen Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.69 2006/07/01 06:46:52 spyderous Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Donnie Berkholz <spyderous@gentoo.org> |
5 | # Author: Donnie Berkholz <spyderous@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # This eclass is designed to reduce code duplication in the modularized X11 |
7 | # This eclass is designed to reduce code duplication in the modularized X11 |
| 8 | # ebuilds. |
8 | # ebuilds. |
| 9 | # |
9 | # |
| 10 | # If the ebuild installs fonts, set FONT="yes" at the top and set FONT_DIRS to |
10 | # Using this eclass: |
| 11 | # the subdirectories within /usr/share/fonts to which it installs fonts. |
11 | # |
|
|
12 | # Inherit it. If you need to run autoreconf for any reason (e.g., your patches |
|
|
13 | # apply to the autotools files rather than configure), set SNAPSHOT="yes". Set |
|
|
14 | # CONFIGURE_OPTIONS to everything you want to pass to the configure script. |
|
|
15 | # |
|
|
16 | # If you have any patches to apply, set PATCHES to their locations and epatch |
|
|
17 | # will apply them. It also handles epatch-style bulk patches, if you know how to |
|
|
18 | # use them and set the correct variables. If you don't, read eutils.eclass. |
|
|
19 | # |
|
|
20 | # If you're creating a font package and the suffix of PN is not equal to the |
|
|
21 | # subdirectory of /usr/share/fonts/ it should install into, set FONT_DIR to that |
|
|
22 | # directory or directories. |
|
|
23 | # |
|
|
24 | # IMPORTANT: Both SNAPSHOT and FONT_DIR must be set _before_ the inherit. |
|
|
25 | # |
|
|
26 | # Pretty much everything else should be automatic. |
| 12 | |
27 | |
| 13 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
28 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
| 14 | |
29 | |
| 15 | inherit eutils libtool toolchain-funcs |
30 | inherit eutils libtool toolchain-funcs flag-o-matic autotools |
| 16 | |
31 | |
| 17 | # Directory prefix to use for everything |
32 | # Directory prefix to use for everything |
| 18 | XDIR="/usr" |
33 | XDIR="/usr" |
| 19 | |
34 | |
| 20 | # Set up default patchset version(s) if necessary |
35 | # Set up default patchset version(s) if necessary |
| … | |
… | |
| 23 | XDPVER="1" |
38 | XDPVER="1" |
| 24 | fi |
39 | fi |
| 25 | |
40 | |
| 26 | IUSE="" |
41 | IUSE="" |
| 27 | HOMEPAGE="http://xorg.freedesktop.org/" |
42 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 28 | SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0-RC3/everything/${P}.tar.bz2 |
43 | |
| 29 | http://xorg.freedesktop.org/releases/X11R7.0-RC2/everything/${P}.tar.bz2 |
44 | # Set up SRC_URI for individual modular releases |
| 30 | http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 |
45 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
| 31 | http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" |
46 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then |
| 32 | LICENSE="X11" |
47 | SRC_URI="${SRC_URI} |
|
|
48 | ${BASE_INDIVIDUAL_URI}/app/${P}.tar.bz2" |
|
|
49 | elif [[ ${CATEGORY} = app-doc ]]; then |
|
|
50 | SRC_URI="${SRC_URI} |
|
|
51 | ${BASE_INDIVIDUAL_URI}/doc/${P}.tar.bz2" |
|
|
52 | # x11-misc contains data and util, x11-themes contains data |
|
|
53 | elif [[ ${CATEGORY} = x11-misc ]] || [[ ${CATEGORY} = x11-themes ]]; then |
|
|
54 | SRC_URI="${SRC_URI} |
|
|
55 | ${BASE_INDIVIDUAL_URI}/data/${P}.tar.bz2 |
|
|
56 | ${BASE_INDIVIDUAL_URI}/util/${P}.tar.bz2" |
|
|
57 | elif [[ ${CATEGORY} = x11-drivers ]]; then |
|
|
58 | SRC_URI="${SRC_URI} |
|
|
59 | ${BASE_INDIVIDUAL_URI}/driver/${P}.tar.bz2" |
|
|
60 | elif [[ ${CATEGORY} = media-fonts ]]; then |
|
|
61 | SRC_URI="${SRC_URI} |
|
|
62 | ${BASE_INDIVIDUAL_URI}/font/${P}.tar.bz2" |
|
|
63 | elif [[ ${CATEGORY} = x11-libs ]]; then |
|
|
64 | SRC_URI="${SRC_URI} |
|
|
65 | ${BASE_INDIVIDUAL_URI}/lib/${P}.tar.bz2" |
|
|
66 | elif [[ ${CATEGORY} = x11-proto ]]; then |
|
|
67 | SRC_URI="${SRC_URI} |
|
|
68 | ${BASE_INDIVIDUAL_URI}/proto/${P}.tar.bz2" |
|
|
69 | elif [[ ${CATEGORY} = x11-base ]]; then |
|
|
70 | SRC_URI="${SRC_URI} |
|
|
71 | ${BASE_INDIVIDUAL_URI}/xserver/${P}.tar.bz2" |
|
|
72 | fi |
|
|
73 | |
| 33 | SLOT="0" |
74 | SLOT="0" |
|
|
75 | |
|
|
76 | # Set the license for the package. This can be overridden by setting |
|
|
77 | # LICENSE after the inherit. |
|
|
78 | LICENSE=${PN} |
| 34 | |
79 | |
| 35 | # Set up shared dependencies |
80 | # Set up shared dependencies |
| 36 | if [[ -n "${SNAPSHOT}" ]]; then |
81 | if [[ -n "${SNAPSHOT}" ]]; then |
| 37 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
82 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 38 | DEPEND="${DEPEND} |
83 | DEPEND="${DEPEND} |
| … | |
… | |
| 42 | >=sys-devel/m4-1.4" |
87 | >=sys-devel/m4-1.4" |
| 43 | fi |
88 | fi |
| 44 | |
89 | |
| 45 | # If we're a font package, but not the font.alias one |
90 | # If we're a font package, but not the font.alias one |
| 46 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
91 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
92 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
| 47 | && [[ "${PN}" != "font-alias" ]] \ |
93 | && [[ "${PN}" != "font-alias" ]] \ |
| 48 | && [[ "${PN}" != "font-util" ]]; then |
94 | && [[ "${PN}" != "font-util" ]]; then |
| 49 | # Activate font code in the rest of the eclass |
95 | # Activate font code in the rest of the eclass |
| 50 | FONT="yes" |
96 | FONT="yes" |
| 51 | |
97 | |
| 52 | RDEPEND="${RDEPEND} |
98 | RDEPEND="${RDEPEND} |
| 53 | media-fonts/encodings" |
99 | media-fonts/encodings |
|
|
100 | x11-apps/mkfontscale |
|
|
101 | x11-apps/mkfontdir" |
| 54 | PDEPEND="${PDEPEND} |
102 | PDEPEND="${PDEPEND} |
| 55 | media-fonts/font-alias" |
103 | media-fonts/font-alias" |
| 56 | |
104 | |
| 57 | # Starting with 7.0RC3, we can specify the font directory |
105 | # Starting with 7.0RC3, we can specify the font directory |
| 58 | # But oddly, we can't do the same for encodings or font-alias |
106 | # But oddly, we can't do the same for encodings or font-alias |
| … | |
… | |
| 79 | fi |
127 | fi |
| 80 | fi |
128 | fi |
| 81 | |
129 | |
| 82 | # If we're a driver package |
130 | # If we're a driver package |
| 83 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
131 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 84 | # Don't build static driver modules |
|
|
| 85 | DRIVER_OPTIONS="--disable-static" |
|
|
| 86 | |
|
|
| 87 | # Enable driver code in the rest of the eclass |
132 | # Enable driver code in the rest of the eclass |
| 88 | DRIVER="yes" |
133 | DRIVER="yes" |
| 89 | |
134 | |
| 90 | # Add driver patchset to SRC_URI |
135 | # Add driver patchset to SRC_URI |
| 91 | SRC_URI="${SRC_URI} |
136 | SRC_URI="${SRC_URI} |
| 92 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
137 | http://dev.gentoo.org/~joshuabaergen/distfiles/x11-driver-patches-${XDPVER}.tar.bz2" |
| 93 | fi |
138 | fi |
| 94 | |
139 | |
|
|
140 | # Debugging -- ignore packages that can't be built with debugging |
|
|
141 | if [[ -z "${FONT}" ]] \ |
|
|
142 | || [[ "${PN/app-doc}" != "${PN}" ]] \ |
|
|
143 | || [[ "${PN/x11-proto}" != "${PN}" ]] \ |
|
|
144 | || [[ "${PN/util-macros}" != "${PN}" ]] \ |
|
|
145 | || [[ "${PN/xbitmaps}" != "${PN}" ]] \ |
|
|
146 | || [[ "${PN/xkbdata}" != "${PN}" ]] \ |
|
|
147 | || [[ "${PN/xorg-cf-files}" != "${PN}" ]] \ |
|
|
148 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
|
|
149 | ; then |
|
|
150 | DEBUGGABLE="yes" |
|
|
151 | IUSE="${IUSE} debug" |
|
|
152 | if use debug; then |
|
|
153 | if ! has splitdebug ${FEATURES}; then |
|
|
154 | RESTRICT="${RESTRICT} nostrip" |
|
|
155 | fi |
|
|
156 | fi |
|
|
157 | fi |
|
|
158 | |
| 95 | DEPEND="${DEPEND} |
159 | DEPEND="${DEPEND} |
| 96 | >=dev-util/pkgconfig-0.18 |
160 | >=dev-util/pkgconfig-0.18" |
|
|
161 | |
|
|
162 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
|
|
163 | DEPEND="${DEPEND} |
| 97 | >=x11-misc/util-macros-0.99.2" |
164 | >=x11-misc/util-macros-0.99.2 |
|
|
165 | !alpha? ( >=sys-devel/binutils-2.16.1-r3 )" |
|
|
166 | fi |
| 98 | |
167 | |
| 99 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
|
|
| 100 | RDEPEND="${RDEPEND} |
168 | RDEPEND="${RDEPEND} |
| 101 | !<=x11-base/xorg-x11-6.9 |
169 | !<=x11-base/xorg-x11-6.9" |
| 102 | >=sys-apps/man-1.6b-r2" |
|
|
| 103 | # Provides virtual/x11 for temporary use until packages are ported |
170 | # Provides virtual/x11 for temporary use until packages are ported |
| 104 | # x11-base/x11-env" |
171 | # x11-base/x11-env" |
|
|
172 | |
|
|
173 | x-modular_specs_check() { |
|
|
174 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
|
|
175 | append-ldflags -Wl,-z,lazy |
|
|
176 | # (#116698) breaks loading |
|
|
177 | filter-ldflags -Wl,-z,now |
|
|
178 | fi |
|
|
179 | } |
|
|
180 | |
|
|
181 | x-modular_dri_check() { |
|
|
182 | # (#120057) Enabling DRI in drivers requires that the server was built with |
|
|
183 | # support for it |
|
|
184 | if [[ -n "${DRIVER}" ]]; then |
|
|
185 | if has dri ${IUSE} && use dri; then |
|
|
186 | einfo "Checking for direct rendering capabilities ..." |
|
|
187 | if ! built_with_use x11-base/xorg-server dri; then |
|
|
188 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
189 | fi |
|
|
190 | fi |
|
|
191 | fi |
|
|
192 | } |
|
|
193 | |
|
|
194 | x-modular_server_supports_drivers_check() { |
|
|
195 | # (#135873) Only certain servers will actually use or be capable of |
|
|
196 | # building external drivers, including binary drivers. |
|
|
197 | if [[ -n "${DRIVER}" ]]; then |
|
|
198 | if has_version '>=x11-base/xorg-server-1.1'; then |
|
|
199 | if ! built_with_use x11-base/xorg-server xorg; then |
|
|
200 | eerror "x11-base/xorg-server is not built with support for external drivers." |
|
|
201 | die "You must build x11-base/xorg-server with USE=xorg." |
|
|
202 | fi |
|
|
203 | fi |
|
|
204 | fi |
|
|
205 | } |
| 105 | |
206 | |
| 106 | x-modular_unpack_source() { |
207 | x-modular_unpack_source() { |
| 107 | unpack ${A} |
208 | unpack ${A} |
| 108 | cd ${S} |
209 | cd ${S} |
| 109 | |
210 | |
| … | |
… | |
| 147 | if [[ "${SNAPSHOT}" = "yes" ]] |
248 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 148 | then |
249 | then |
| 149 | # If possible, generate configure if it doesn't exist |
250 | # If possible, generate configure if it doesn't exist |
| 150 | if [ -f "${S}/configure.ac" ] |
251 | if [ -f "${S}/configure.ac" ] |
| 151 | then |
252 | then |
| 152 | einfo "Running autoreconf..." |
253 | eautoreconf |
| 153 | autoreconf -v --force --install |
|
|
| 154 | fi |
|
|
| 155 | fi |
254 | fi |
|
|
255 | fi |
| 156 | |
256 | |
|
|
257 | # Joshua Baergen - October 23, 2005 |
|
|
258 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
259 | elibtoolize |
| 157 | } |
260 | } |
| 158 | |
261 | |
| 159 | x-modular_src_unpack() { |
262 | x-modular_src_unpack() { |
| 160 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
263 | x-modular_specs_check |
| 161 | if gcc-specs-now; then |
264 | x-modular_server_supports_drivers_check |
| 162 | msg="Do not emerge ${PN} without vanilla gcc!" |
265 | x-modular_dri_check |
| 163 | eerror "$msg" |
|
|
| 164 | die "$msg" |
|
|
| 165 | fi |
|
|
| 166 | fi |
|
|
| 167 | |
|
|
| 168 | x-modular_unpack_source |
266 | x-modular_unpack_source |
| 169 | x-modular_patch_source |
267 | x-modular_patch_source |
| 170 | x-modular_reconf_source |
268 | x-modular_reconf_source |
| 171 | |
|
|
| 172 | # Joshua Baergen - October 23, 2005 |
|
|
| 173 | # Fix shared lib issues on MIPS, FBSD, etc etc |
|
|
| 174 | elibtoolize |
|
|
| 175 | } |
269 | } |
| 176 | |
270 | |
| 177 | x-modular_font_configure() { |
271 | x-modular_font_configure() { |
| 178 | if [[ -n "${FONT}" ]]; then |
272 | if [[ -n "${FONT}" ]]; then |
| 179 | # Might be worth adding an option to configure your desired font |
273 | # Might be worth adding an option to configure your desired font |
| … | |
… | |
| 199 | --disable-koi8-r" |
293 | --disable-koi8-r" |
| 200 | fi |
294 | fi |
| 201 | fi |
295 | fi |
| 202 | } |
296 | } |
| 203 | |
297 | |
|
|
298 | x-modular_debug_setup() { |
|
|
299 | if [[ -n "${DEBUGGABLE}" ]]; then |
|
|
300 | if use debug; then |
|
|
301 | strip-flags |
|
|
302 | append-flags -g |
|
|
303 | fi |
|
|
304 | fi |
|
|
305 | } |
|
|
306 | |
| 204 | x-modular_src_configure() { |
307 | x-modular_src_configure() { |
| 205 | x-modular_font_configure |
308 | x-modular_font_configure |
|
|
309 | x-modular_debug_setup |
| 206 | |
310 | |
| 207 | # If prefix isn't set here, .pc files cause problems |
311 | # If prefix isn't set here, .pc files cause problems |
| 208 | if [[ -x ./configure ]]; then |
312 | if [[ -x ./configure ]]; then |
| 209 | econf --prefix=${XDIR} \ |
313 | econf --prefix=${XDIR} \ |
| 210 | --datadir=${XDIR}/share \ |
314 | --datadir=${XDIR}/share \ |
| … | |
… | |
| 231 | # Shouldn't be necessary in XDIR=/usr |
335 | # Shouldn't be necessary in XDIR=/usr |
| 232 | # einstall forces datadir, so we need to re-force it |
336 | # einstall forces datadir, so we need to re-force it |
| 233 | # datadir=${XDIR}/share \ |
337 | # datadir=${XDIR}/share \ |
| 234 | # mandir=${XDIR}/share/man \ |
338 | # mandir=${XDIR}/share/man \ |
| 235 | |
339 | |
|
|
340 | if [[ -e ${S}/ChangeLog ]]; then |
|
|
341 | dodoc ${S}/ChangeLog |
|
|
342 | fi |
|
|
343 | |
|
|
344 | # Make sure docs get compressed |
|
|
345 | prepalldocs |
|
|
346 | |
| 236 | # Don't install libtool archives for server modules |
347 | # Don't install libtool archives for server modules |
| 237 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
348 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
| 238 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
349 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
| 239 | | xargs rm -f |
350 | | xargs rm -f |
|
|
351 | fi |
|
|
352 | |
|
|
353 | # Don't install overlapping fonts.* files |
|
|
354 | # Generate them instead when possible |
|
|
355 | if [[ -n "${FONT}" ]]; then |
|
|
356 | remove_font_metadata |
| 240 | fi |
357 | fi |
| 241 | } |
358 | } |
| 242 | |
359 | |
| 243 | x-modular_pkg_preinst() { |
360 | x-modular_pkg_preinst() { |
| 244 | if [[ -n "${FONT}" ]]; then |
361 | if [[ -n "${FONT}" ]]; then |
| … | |
… | |
| 302 | |
419 | |
| 303 | create_fonts_scale |
420 | create_fonts_scale |
| 304 | create_fonts_dir |
421 | create_fonts_dir |
| 305 | fix_font_permissions |
422 | fix_font_permissions |
| 306 | create_font_cache |
423 | create_font_cache |
|
|
424 | } |
|
|
425 | |
|
|
426 | remove_font_metadata() { |
|
|
427 | local DIR |
|
|
428 | for DIR in ${FONT_DIR}; do |
|
|
429 | if [[ "${DIR}" != "Speedo" ]] && \ |
|
|
430 | [[ "${DIR}" != "CID" ]] ; then |
|
|
431 | # Delete font metadata files |
|
|
432 | # fonts.scale, fonts.dir, fonts.cache-1 |
|
|
433 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
|
|
434 | fi |
|
|
435 | done |
| 307 | } |
436 | } |
| 308 | |
437 | |
| 309 | discover_font_dirs() { |
438 | discover_font_dirs() { |
| 310 | pushd ${IMAGE}/usr/share/fonts |
439 | pushd ${IMAGE}/usr/share/fonts |
| 311 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |
440 | FONT_DIRS="$(find . -maxdepth 1 -mindepth 1 -type d)" |