| 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.59 2006/05/16 06:23:43 exg Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.65 2006/06/30 07:55:53 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. |
| … | |
… | |
| 175 | msg="${PN} does not work with hardened gcc specs. Switch to vanilla gcc specs to emerge ${PN}." |
175 | msg="${PN} does not work with hardened gcc specs. Switch to vanilla gcc specs to emerge ${PN}." |
| 176 | eerror "$msg" |
176 | eerror "$msg" |
| 177 | die "$msg" |
177 | die "$msg" |
| 178 | fi |
178 | fi |
| 179 | |
179 | |
|
|
180 | append-ldflags -Wl,-z,lazy |
| 180 | # (#116698) breaks loading |
181 | # (#116698) breaks loading |
| 181 | filter-ldflags -Wl,-z,now |
182 | filter-ldflags -Wl,-z,now |
| 182 | fi |
183 | fi |
| 183 | } |
184 | } |
| 184 | |
185 | |
| … | |
… | |
| 189 | if has dri ${IUSE} && use dri; then |
190 | if has dri ${IUSE} && use dri; then |
| 190 | einfo "Checking for direct rendering capabilities ..." |
191 | einfo "Checking for direct rendering capabilities ..." |
| 191 | if ! built_with_use x11-base/xorg-server dri; then |
192 | if ! built_with_use x11-base/xorg-server dri; then |
| 192 | die "You must build x11-base/xorg-server with USE=dri." |
193 | die "You must build x11-base/xorg-server with USE=dri." |
| 193 | fi |
194 | fi |
|
|
195 | fi |
|
|
196 | fi |
|
|
197 | } |
|
|
198 | |
|
|
199 | x-modular_server_supports_drivers_check() { |
|
|
200 | # (#135873) Only certain servers will actually use or be capable of |
|
|
201 | # building external drivers, including binary drivers. |
|
|
202 | if [[ -n "${DRIVER}" ]]; then |
|
|
203 | if ! built_with_use x11-base/xorg-server xorg; then |
|
|
204 | eerror "x11-base/xorg-server is not built with support for external drivers." |
|
|
205 | die "You must build x11-base/xorg-server with USE=xorg." |
| 194 | fi |
206 | fi |
| 195 | fi |
207 | fi |
| 196 | } |
208 | } |
| 197 | |
209 | |
| 198 | x-modular_unpack_source() { |
210 | x-modular_unpack_source() { |
| … | |
… | |
| 250 | elibtoolize |
262 | elibtoolize |
| 251 | } |
263 | } |
| 252 | |
264 | |
| 253 | x-modular_src_unpack() { |
265 | x-modular_src_unpack() { |
| 254 | x-modular_specs_check |
266 | x-modular_specs_check |
|
|
267 | x-modular_server_supports_drivers_check |
| 255 | x-modular_dri_check |
268 | x-modular_dri_check |
| 256 | x-modular_unpack_source |
269 | x-modular_unpack_source |
| 257 | x-modular_patch_source |
270 | x-modular_patch_source |
| 258 | x-modular_reconf_source |
271 | x-modular_reconf_source |
| 259 | } |
272 | } |
| … | |
… | |
| 324 | install |
337 | install |
| 325 | # Shouldn't be necessary in XDIR=/usr |
338 | # Shouldn't be necessary in XDIR=/usr |
| 326 | # einstall forces datadir, so we need to re-force it |
339 | # einstall forces datadir, so we need to re-force it |
| 327 | # datadir=${XDIR}/share \ |
340 | # datadir=${XDIR}/share \ |
| 328 | # mandir=${XDIR}/share/man \ |
341 | # mandir=${XDIR}/share/man \ |
|
|
342 | |
|
|
343 | if [[ -e ${S}/ChangeLog ]]; then |
|
|
344 | dodoc ${S}/ChangeLog |
|
|
345 | fi |
| 329 | |
346 | |
| 330 | # Make sure docs get compressed |
347 | # Make sure docs get compressed |
| 331 | prepalldocs |
348 | prepalldocs |
| 332 | |
349 | |
| 333 | # Don't install libtool archives for server modules |
350 | # Don't install libtool archives for server modules |