diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2003-09-06 22:32:12 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2003-09-06 22:32:12 +0000 |
commit | 7c295534bc6db9bd1eb7accf09f779300e00c48e (patch) | |
tree | c04ca8c00640d93e1220ad944c13606ead2d85a6 /sys-devel/bison/bison-1.875.ebuild | |
parent | repoman: trim trailing whitespace (diff) | |
download | gentoo-2-7c295534bc6db9bd1eb7accf09f779300e00c48e.tar.gz gentoo-2-7c295534bc6db9bd1eb7accf09f779300e00c48e.tar.bz2 gentoo-2-7c295534bc6db9bd1eb7accf09f779300e00c48e.zip |
Fix DEPEND for when we have 'build' in USE.
Diffstat (limited to 'sys-devel/bison/bison-1.875.ebuild')
-rw-r--r-- | sys-devel/bison/bison-1.875.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys-devel/bison/bison-1.875.ebuild b/sys-devel/bison/bison-1.875.ebuild index 7684d55f1477..b693fd49176e 100644 --- a/sys-devel/bison/bison-1.875.ebuild +++ b/sys-devel/bison/bison-1.875.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-1.875.ebuild,v 1.1 2003/09/06 22:22:21 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-1.875.ebuild,v 1.2 2003/09/06 22:31:59 azarah Exp $ IUSE="nls static build" # icc" @@ -14,7 +14,7 @@ SLOT="0" # do not compile xfree KEYWORDS="~amd64 ~x86 ~ppc ~sparc ~alpha ~mips ~hppa ~arm" -DEPEND="nls? ( sys-devel/gettext )" +DEPEND="!build? ( nls? ( sys-devel/gettext ) )" # icc? ( dev-lang/icc )" @@ -30,7 +30,7 @@ src_compile() { # use icc && CC="iccbin" CXX="iccbin" LD="iccbin" local myconf= - + use nls || myconf="--disable-nls" econf ${myconf} || die @@ -43,7 +43,7 @@ src_compile() { fi } -src_install() { +src_install() { make DESTDIR=${D} \ datadir=/usr/share \ |