| 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.60 2006/05/23 17:50:30 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.71 2006/07/04 02:11:26 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. |
| … | |
… | |
| 25 | # |
25 | # |
| 26 | # Pretty much everything else should be automatic. |
26 | # Pretty much everything else should be automatic. |
| 27 | |
27 | |
| 28 | 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 |
| 29 | |
29 | |
| 30 | inherit eutils libtool toolchain-funcs flag-o-matic autotools |
30 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools |
| 31 | |
31 | |
| 32 | # Directory prefix to use for everything |
32 | # Directory prefix to use for everything |
| 33 | XDIR="/usr" |
33 | XDIR="/usr" |
| 34 | |
34 | |
| 35 | # Set up default patchset version(s) if necessary |
35 | # Set up default patchset version(s) if necessary |
| … | |
… | |
| 159 | DEPEND="${DEPEND} |
159 | DEPEND="${DEPEND} |
| 160 | >=dev-util/pkgconfig-0.18" |
160 | >=dev-util/pkgconfig-0.18" |
| 161 | |
161 | |
| 162 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
162 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
| 163 | DEPEND="${DEPEND} |
163 | DEPEND="${DEPEND} |
| 164 | >=x11-misc/util-macros-0.99.2" |
164 | >=x11-misc/util-macros-0.99.2 |
|
|
165 | >=sys-devel/binutils-2.16.1-r3" |
| 165 | fi |
166 | fi |
| 166 | |
167 | |
| 167 | RDEPEND="${RDEPEND} |
168 | RDEPEND="${RDEPEND} |
| 168 | !<=x11-base/xorg-x11-6.9" |
169 | !<=x11-base/xorg-x11-6.9" |
| 169 | # Provides virtual/x11 for temporary use until packages are ported |
170 | # Provides virtual/x11 for temporary use until packages are ported |
| 170 | # x11-base/x11-env" |
171 | # x11-base/x11-env" |
| 171 | |
172 | |
| 172 | x-modular_specs_check() { |
173 | x-modular_specs_check() { |
| 173 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
174 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
| 174 | if gcc-specs-now; then |
175 | append-ldflags -Wl,-z,lazy |
| 175 | msg="${PN} does not work with hardened gcc specs. Switch to vanilla gcc specs to emerge ${PN}." |
|
|
| 176 | eerror "$msg" |
|
|
| 177 | die "$msg" |
|
|
| 178 | fi |
|
|
| 179 | |
|
|
| 180 | # (#116698) breaks loading |
176 | # (#116698) breaks loading |
| 181 | filter-ldflags -Wl,-z,now |
177 | filter-ldflags -Wl,-z,now |
| 182 | fi |
178 | fi |
| 183 | } |
179 | } |
| 184 | |
180 | |
| … | |
… | |
| 188 | if [[ -n "${DRIVER}" ]]; then |
184 | if [[ -n "${DRIVER}" ]]; then |
| 189 | if has dri ${IUSE} && use dri; then |
185 | if has dri ${IUSE} && use dri; then |
| 190 | einfo "Checking for direct rendering capabilities ..." |
186 | einfo "Checking for direct rendering capabilities ..." |
| 191 | if ! built_with_use x11-base/xorg-server dri; then |
187 | if ! built_with_use x11-base/xorg-server dri; then |
| 192 | die "You must build x11-base/xorg-server with USE=dri." |
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." |
| 193 | fi |
202 | fi |
| 194 | fi |
203 | fi |
| 195 | fi |
204 | fi |
| 196 | } |
205 | } |
| 197 | |
206 | |
| … | |
… | |
| 250 | elibtoolize |
259 | elibtoolize |
| 251 | } |
260 | } |
| 252 | |
261 | |
| 253 | x-modular_src_unpack() { |
262 | x-modular_src_unpack() { |
| 254 | x-modular_specs_check |
263 | x-modular_specs_check |
|
|
264 | x-modular_server_supports_drivers_check |
| 255 | x-modular_dri_check |
265 | x-modular_dri_check |
| 256 | x-modular_unpack_source |
266 | x-modular_unpack_source |
| 257 | x-modular_patch_source |
267 | x-modular_patch_source |
| 258 | x-modular_reconf_source |
268 | x-modular_reconf_source |
| 259 | } |
269 | } |
| … | |
… | |
| 333 | |
343 | |
| 334 | # Make sure docs get compressed |
344 | # Make sure docs get compressed |
| 335 | prepalldocs |
345 | prepalldocs |
| 336 | |
346 | |
| 337 | # Don't install libtool archives for server modules |
347 | # Don't install libtool archives for server modules |
| 338 | if [[ -e ${D}/usr/lib/xorg/modules ]]; then |
348 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
| 339 | find ${D}/usr/lib/xorg/modules -name '*.la' \ |
349 | find ${D}/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
| 340 | | xargs rm -f |
350 | | xargs rm -f |
| 341 | fi |
351 | fi |
| 342 | |
352 | |
| 343 | # Don't install overlapping fonts.* files |
353 | # Don't install overlapping fonts.* files |
| 344 | # Generate them instead when possible |
354 | # Generate them instead when possible |