| 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.63 2006/06/30 03:52:57 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.66 2006/06/30 16:21:38 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. |
| … | |
… | |
| 155 | fi |
155 | fi |
| 156 | fi |
156 | fi |
| 157 | fi |
157 | fi |
| 158 | |
158 | |
| 159 | DEPEND="${DEPEND} |
159 | DEPEND="${DEPEND} |
| 160 | >=dev-util/pkgconfig-0.18 |
160 | >=dev-util/pkgconfig-0.18" |
| 161 | >=sys-devel/binutils-2.16.1-r3" |
|
|
| 162 | |
161 | |
| 163 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
162 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
| 164 | DEPEND="${DEPEND} |
163 | DEPEND="${DEPEND} |
| 165 | >=x11-misc/util-macros-0.99.2" |
164 | >=x11-misc/util-macros-0.99.2" |
| 166 | fi |
165 | fi |
| … | |
… | |
| 170 | # Provides virtual/x11 for temporary use until packages are ported |
169 | # Provides virtual/x11 for temporary use until packages are ported |
| 171 | # x11-base/x11-env" |
170 | # x11-base/x11-env" |
| 172 | |
171 | |
| 173 | x-modular_specs_check() { |
172 | x-modular_specs_check() { |
| 174 | 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 |
|
|
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 | |
| 175 | append-ldflags -Wl,-z,lazy |
180 | append-ldflags -Wl,-z,lazy |
| 176 | # (#116698) breaks loading |
181 | # (#116698) breaks loading |
| 177 | filter-ldflags -Wl,-z,now |
182 | filter-ldflags -Wl,-z,now |
| 178 | fi |
183 | fi |
| 179 | } |
184 | } |
| … | |
… | |
| 193 | |
198 | |
| 194 | x-modular_server_supports_drivers_check() { |
199 | x-modular_server_supports_drivers_check() { |
| 195 | # (#135873) Only certain servers will actually use or be capable of |
200 | # (#135873) Only certain servers will actually use or be capable of |
| 196 | # building external drivers, including binary drivers. |
201 | # building external drivers, including binary drivers. |
| 197 | if [[ -n "${DRIVER}" ]]; then |
202 | if [[ -n "${DRIVER}" ]]; then |
|
|
203 | if has_version >=x11-base/xorg-server-1.1; then |
| 198 | if ! built_with_use x11-base/xorg-server xorg; then |
204 | if ! built_with_use x11-base/xorg-server xorg; then |
| 199 | eerror "x11-base/xorg-server is not built with support for external drivers." |
205 | eerror "x11-base/xorg-server is not built with support for external drivers." |
| 200 | die "You must build x11-base/xorg-server with USE=xorg." |
206 | die "You must build x11-base/xorg-server with USE=xorg." |
|
|
207 | fi |
| 201 | fi |
208 | fi |
| 202 | fi |
209 | fi |
| 203 | } |
210 | } |
| 204 | |
211 | |
| 205 | x-modular_unpack_source() { |
212 | x-modular_unpack_source() { |