diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-12-08 23:55:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-12-08 23:55:00 +0000 |
commit | a35685ebb5b6fb6be46fd37709e3317f5eca436b (patch) | |
tree | cef2861ec8caf212b09923edea1f354a0a7faa60 /sys-devel | |
parent | as pointed out by az, we dont need such a new version of udev, and we should ... (diff) | |
download | gentoo-2-a35685ebb5b6fb6be46fd37709e3317f5eca436b.tar.gz gentoo-2-a35685ebb5b6fb6be46fd37709e3317f5eca436b.tar.bz2 gentoo-2-a35685ebb5b6fb6be46fd37709e3317f5eca436b.zip |
obey USE=nocxx #114850
(Portage version: 2.0.53)
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/gettext/gettext-0.14.5.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-devel/gettext/gettext-0.14.5.ebuild b/sys-devel/gettext/gettext-0.14.5.ebuild index 3df2cf7d89c0..26f39648a1d0 100644 --- a/sys-devel/gettext/gettext-0.14.5.ebuild +++ b/sys-devel/gettext/gettext-0.14.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.14.5.ebuild,v 1.3 2005/11/10 04:05:05 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gettext/gettext-0.14.5.ebuild,v 1.4 2005/12/08 23:55:00 vapier Exp $ inherit flag-o-matic eutils toolchain-funcs mono libtool elisp-common @@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="emacs nls doc" +IUSE="emacs nls doc nocxx" DEPEND="|| ( sys-libs/glibc dev-libs/libiconv )" @@ -64,7 +64,7 @@ src_compile() { myconf="${myconf} --with-included-gettext --enable-nls" fi use emacs || export EMACS=no #93823 - CXX=$(tc-getCC) \ + use nocxx && export CXX=$(tc-getCC) econf \ --without-java \ ${myconf} \ |