| 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.64 2006/06/30 07:34:11 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. |
| … | |
… | |
| 169 | # Provides virtual/x11 for temporary use until packages are ported |
169 | # Provides virtual/x11 for temporary use until packages are ported |
| 170 | # x11-base/x11-env" |
170 | # x11-base/x11-env" |
| 171 | |
171 | |
| 172 | x-modular_specs_check() { |
172 | x-modular_specs_check() { |
| 173 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
173 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
| 174 | if gcc-specs-now; then |
174 | 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 |
175 | # (#116698) breaks loading |
| 181 | filter-ldflags -Wl,-z,now |
176 | filter-ldflags -Wl,-z,now |
| 182 | fi |
177 | fi |
| 183 | } |
178 | } |
| 184 | |
179 | |
| … | |
… | |
| 189 | if has dri ${IUSE} && use dri; then |
184 | if has dri ${IUSE} && use dri; then |
| 190 | einfo "Checking for direct rendering capabilities ..." |
185 | einfo "Checking for direct rendering capabilities ..." |
| 191 | if ! built_with_use x11-base/xorg-server dri; then |
186 | if ! built_with_use x11-base/xorg-server dri; then |
| 192 | die "You must build x11-base/xorg-server with USE=dri." |
187 | die "You must build x11-base/xorg-server with USE=dri." |
| 193 | fi |
188 | fi |
|
|
189 | fi |
|
|
190 | fi |
|
|
191 | } |
|
|
192 | |
|
|
193 | x-modular_server_supports_drivers_check() { |
|
|
194 | # (#135873) Only certain servers will actually use or be capable of |
|
|
195 | # building external drivers, including binary drivers. |
|
|
196 | if [[ -n "${DRIVER}" ]]; then |
|
|
197 | if ! built_with_use x11-base/xorg-server xorg; then |
|
|
198 | eerror "x11-base/xorg-server is not built with support for external drivers." |
|
|
199 | die "You must build x11-base/xorg-server with USE=xorg." |
| 194 | fi |
200 | fi |
| 195 | fi |
201 | fi |
| 196 | } |
202 | } |
| 197 | |
203 | |
| 198 | x-modular_unpack_source() { |
204 | x-modular_unpack_source() { |
| … | |
… | |
| 250 | elibtoolize |
256 | elibtoolize |
| 251 | } |
257 | } |
| 252 | |
258 | |
| 253 | x-modular_src_unpack() { |
259 | x-modular_src_unpack() { |
| 254 | x-modular_specs_check |
260 | x-modular_specs_check |
|
|
261 | x-modular_server_supports_drivers_check |
| 255 | x-modular_dri_check |
262 | x-modular_dri_check |
| 256 | x-modular_unpack_source |
263 | x-modular_unpack_source |
| 257 | x-modular_patch_source |
264 | x-modular_patch_source |
| 258 | x-modular_reconf_source |
265 | x-modular_reconf_source |
| 259 | } |
266 | } |