diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-19 07:59:07 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-19 07:59:07 +0000 |
commit | 114f32f4fdb1e9e002165996b8109d678cbd70bc (patch) | |
tree | 37dea516bffa62763c346150ebc55ee91a86a622 | |
parent | dont access $CC (diff) | |
download | historical-114f32f4fdb1e9e002165996b8109d678cbd70bc.tar.gz historical-114f32f4fdb1e9e002165996b8109d678cbd70bc.tar.bz2 historical-114f32f4fdb1e9e002165996b8109d678cbd70bc.zip |
dont access $CC
-rw-r--r-- | app-editors/nedit/nedit-5.3-r2.ebuild | 8 | ||||
-rw-r--r-- | app-editors/nedit/nedit-5.4.ebuild | 9 | ||||
-rw-r--r-- | app-editors/nedit/nedit-5.4_pre20030213.ebuild | 11 |
3 files changed, 15 insertions, 13 deletions
diff --git a/app-editors/nedit/nedit-5.3-r2.ebuild b/app-editors/nedit/nedit-5.3-r2.ebuild index 14d4195f591a..9a95e1208fe1 100644 --- a/app-editors/nedit/nedit-5.3-r2.ebuild +++ b/app-editors/nedit/nedit-5.3-r2.ebuild @@ -1,16 +1,16 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/nedit/nedit-5.3-r2.ebuild,v 1.13 2004/03/30 06:03:59 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/nedit/nedit-5.3-r2.ebuild,v 1.14 2004/04/19 07:59:07 vapier Exp $ -inherit eutils +inherit eutils gcc MY_PV=${PV/./_} DESCRIPTION="multi-purpose text editor for the X Window System" HOMEPAGE="http://nedit.org/" SRC_URI="mirror://nedit/v${MY_PV}/${P}-source.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="x86 ppc sparc alpha" IUSE="spell" @@ -30,7 +30,7 @@ src_unpack() { } src_compile() { - make CC=${CC} linux || die + make CC=$(gcc-getCC) linux || die } src_install() { diff --git a/app-editors/nedit/nedit-5.4.ebuild b/app-editors/nedit/nedit-5.4.ebuild index 48019505d8b1..908289e05703 100644 --- a/app-editors/nedit/nedit-5.4.ebuild +++ b/app-editors/nedit/nedit-5.4.ebuild @@ -1,25 +1,26 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/nedit/nedit-5.4.ebuild,v 1.4 2004/04/14 00:38:55 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/nedit/nedit-5.4.ebuild,v 1.5 2004/04/19 07:59:07 vapier Exp $ + +inherit gcc DESCRIPTION="multi-purpose text editor for the X Window System" HOMEPAGE="http://nedit.org/" SRC_URI="mirror://sourceforge/nedit/${P}-source.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="x86 ~ppc sparc ~mips" IUSE="spell" RDEPEND="spell? ( virtual/aspell-dict ) virtual/x11" - DEPEND="${RDEPEND} dev-util/yacc x11-libs/openmotif" src_compile() { - make CC=${CC} linux || die + make CC=$(gcc-getCC) linux || die } src_install() { diff --git a/app-editors/nedit/nedit-5.4_pre20030213.ebuild b/app-editors/nedit/nedit-5.4_pre20030213.ebuild index f92a53d03ee1..dd91f38e17e2 100644 --- a/app-editors/nedit/nedit-5.4_pre20030213.ebuild +++ b/app-editors/nedit/nedit-5.4_pre20030213.ebuild @@ -1,16 +1,15 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/nedit/nedit-5.4_pre20030213.ebuild,v 1.13 2004/03/30 06:03:59 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/nedit/nedit-5.4_pre20030213.ebuild,v 1.14 2004/04/19 07:59:07 vapier Exp $ -inherit eutils +inherit eutils gcc -S=${WORKDIR}/${PN} DESCRIPTION="multi-purpose text editor for the X Window System" HOMEPAGE="http://nedit.org/" SRC_URI="mirror://gentoo/${P}.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="x86 ~ppc sparc amd64 ~mips" IUSE="spell" @@ -20,6 +19,8 @@ DEPEND="${RDEPEND} dev-util/yacc x11-libs/openmotif" +S=${WORKDIR}/${PN} + src_unpack() { unpack ${A} cd ${S} @@ -30,7 +31,7 @@ src_unpack() { } src_compile() { - make CC=${CC} linux || die + make CC=$(gcc-getCC) linux || die } src_install() { |