| 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.83 2007/05/02 07:10:33 dberkholz Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.85 2007/08/02 01:21:56 dberkholz Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Donnie Berkholz <dberkholz@gentoo.org> |
5 | # Author: Donnie Berkholz <dberkholz@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. |
| … | |
… | |
| 158 | || [[ "${PN/xorg-cf-files}" != "${PN}" ]] \ |
158 | || [[ "${PN/xorg-cf-files}" != "${PN}" ]] \ |
| 159 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
159 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
| 160 | ; then |
160 | ; then |
| 161 | DEBUGGABLE="yes" |
161 | DEBUGGABLE="yes" |
| 162 | IUSE="${IUSE} debug" |
162 | IUSE="${IUSE} debug" |
| 163 | if use debug; then |
|
|
| 164 | if ! has splitdebug ${FEATURES}; then |
|
|
| 165 | RESTRICT="${RESTRICT} nostrip" |
|
|
| 166 | fi |
|
|
| 167 | fi |
|
|
| 168 | fi |
163 | fi |
| 169 | |
164 | |
| 170 | DEPEND="${DEPEND} |
165 | DEPEND="${DEPEND} |
| 171 | >=dev-util/pkgconfig-0.18" |
166 | >=dev-util/pkgconfig-0.18" |
| 172 | |
167 | |
| … | |
… | |
| 322 | x-modular_src_configure() { |
317 | x-modular_src_configure() { |
| 323 | x-modular_font_configure |
318 | x-modular_font_configure |
| 324 | x-modular_debug_setup |
319 | x-modular_debug_setup |
| 325 | |
320 | |
| 326 | # If prefix isn't set here, .pc files cause problems |
321 | # If prefix isn't set here, .pc files cause problems |
| 327 | if [[ -x ./configure ]]; then |
322 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
| 328 | econf --prefix=${XDIR} \ |
323 | econf --prefix=${XDIR} \ |
| 329 | --datadir=${XDIR}/share \ |
324 | --datadir=${XDIR}/share \ |
| 330 | ${FONT_OPTIONS} \ |
325 | ${FONT_OPTIONS} \ |
| 331 | ${DRIVER_OPTIONS} \ |
326 | ${DRIVER_OPTIONS} \ |
| 332 | ${CONFIGURE_OPTIONS} |
327 | ${CONFIGURE_OPTIONS} |