| 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.58 2006/05/15 03:23:32 spyderous Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.63 2006/06/30 03:52:57 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" |
| 161 | |
162 | |
| 162 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
163 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
| 163 | DEPEND="${DEPEND} |
164 | DEPEND="${DEPEND} |
| 164 | >=x11-misc/util-macros-0.99.2" |
165 | >=x11-misc/util-macros-0.99.2" |
| 165 | fi |
166 | fi |
| 166 | |
167 | |
| 167 | # >=sys-apps/man-1.6b-r2 required to look in [0-8]x/ directories |
|
|
| 168 | RDEPEND="${RDEPEND} |
168 | RDEPEND="${RDEPEND} |
| 169 | !<=x11-base/xorg-x11-6.9 |
169 | !<=x11-base/xorg-x11-6.9" |
| 170 | >=sys-apps/man-1.6b-r2" |
|
|
| 171 | # Provides virtual/x11 for temporary use until packages are ported |
170 | # Provides virtual/x11 for temporary use until packages are ported |
| 172 | # x11-base/x11-env" |
171 | # x11-base/x11-env" |
| 173 | |
172 | |
| 174 | x-modular_specs_check() { |
173 | x-modular_specs_check() { |
| 175 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
174 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
| 176 | if gcc-specs-now; then |
175 | append-ldflags -Wl,-z,lazy |
| 177 | msg="${PN} does not work with hardened gcc specs. Switch to vanilla gcc specs to emerge ${PN}." |
|
|
| 178 | eerror "$msg" |
|
|
| 179 | die "$msg" |
|
|
| 180 | fi |
|
|
| 181 | |
|
|
| 182 | # (#116698) breaks loading |
176 | # (#116698) breaks loading |
| 183 | filter-ldflags -Wl,-z,now |
177 | filter-ldflags -Wl,-z,now |
| 184 | fi |
178 | fi |
| 185 | } |
179 | } |
| 186 | |
180 | |
| … | |
… | |
| 191 | if has dri ${IUSE} && use dri; then |
185 | if has dri ${IUSE} && use dri; then |
| 192 | einfo "Checking for direct rendering capabilities ..." |
186 | einfo "Checking for direct rendering capabilities ..." |
| 193 | if ! built_with_use x11-base/xorg-server dri; then |
187 | if ! built_with_use x11-base/xorg-server dri; then |
| 194 | die "You must build x11-base/xorg-server with USE=dri." |
188 | die "You must build x11-base/xorg-server with USE=dri." |
| 195 | fi |
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 ! built_with_use x11-base/xorg-server xorg; then |
|
|
199 | 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." |
| 196 | fi |
201 | fi |
| 197 | fi |
202 | fi |
| 198 | } |
203 | } |
| 199 | |
204 | |
| 200 | x-modular_unpack_source() { |
205 | x-modular_unpack_source() { |
| … | |
… | |
| 252 | elibtoolize |
257 | elibtoolize |
| 253 | } |
258 | } |
| 254 | |
259 | |
| 255 | x-modular_src_unpack() { |
260 | x-modular_src_unpack() { |
| 256 | x-modular_specs_check |
261 | x-modular_specs_check |
|
|
262 | x-modular_server_supports_drivers_check |
| 257 | x-modular_dri_check |
263 | x-modular_dri_check |
| 258 | x-modular_unpack_source |
264 | x-modular_unpack_source |
| 259 | x-modular_patch_source |
265 | x-modular_patch_source |
| 260 | x-modular_reconf_source |
266 | x-modular_reconf_source |
| 261 | } |
267 | } |
| … | |
… | |
| 326 | install |
332 | install |
| 327 | # Shouldn't be necessary in XDIR=/usr |
333 | # Shouldn't be necessary in XDIR=/usr |
| 328 | # einstall forces datadir, so we need to re-force it |
334 | # einstall forces datadir, so we need to re-force it |
| 329 | # datadir=${XDIR}/share \ |
335 | # datadir=${XDIR}/share \ |
| 330 | # mandir=${XDIR}/share/man \ |
336 | # mandir=${XDIR}/share/man \ |
|
|
337 | |
|
|
338 | if [[ -e ${S}/ChangeLog ]]; then |
|
|
339 | dodoc ${S}/ChangeLog |
|
|
340 | fi |
| 331 | |
341 | |
| 332 | # Make sure docs get compressed |
342 | # Make sure docs get compressed |
| 333 | prepalldocs |
343 | prepalldocs |
| 334 | |
344 | |
| 335 | # Don't install libtool archives for server modules |
345 | # Don't install libtool archives for server modules |