diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-27 08:23:44 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-27 08:23:44 +0000 |
commit | 9bdf8795eef7b403ac78800fc969ebf2bc0c777d (patch) | |
tree | a26c1b3784b2a69d715d5cad3168f9c019c5303b /app-sci/rasmol | |
parent | New upstream version with SECURITY fixes. Updating is highly recommended (Man... (diff) | |
download | gentoo-2-9bdf8795eef7b403ac78800fc969ebf2bc0c777d.tar.gz gentoo-2-9bdf8795eef7b403ac78800fc969ebf2bc0c777d.tar.bz2 gentoo-2-9bdf8795eef7b403ac78800fc969ebf2bc0c777d.zip |
dont access $CC
Diffstat (limited to 'app-sci/rasmol')
-rw-r--r-- | app-sci/rasmol/rasmol-2.7.1.1.ebuild | 17 | ||||
-rw-r--r-- | app-sci/rasmol/rasmol-2.7.2.1.1.ebuild | 13 |
2 files changed, 18 insertions, 12 deletions
diff --git a/app-sci/rasmol/rasmol-2.7.1.1.ebuild b/app-sci/rasmol/rasmol-2.7.1.1.ebuild index 478f52fa0152..260cb64d0b93 100644 --- a/app-sci/rasmol/rasmol-2.7.1.1.ebuild +++ b/app-sci/rasmol/rasmol-2.7.1.1.ebuild @@ -1,18 +1,21 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/rasmol/rasmol-2.7.1.1.ebuild,v 1.3 2004/04/19 12:20:49 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/rasmol/rasmol-2.7.1.1.ebuild,v 1.4 2004/04/27 08:23:44 vapier Exp $ + +inherit gcc MY_P="RasMol_${PV}" DESCRIPTION="Free program that displays molecular structure." HOMEPAGE="http://www.openrasmol.org/" -KEYWORDS="x86" +SRC_URI="http://www.bernstein-plus-sons.com/software/${MY_P}.tar.gz" + +LICENSE="public-domain" SLOT="0" +KEYWORDS="x86" IUSE="" -LICENSE="public-domain" -DEPEND="virtual/x11" -SRC_URI="http://www.bernstein-plus-sons.com/software/${MY_P}.tar.gz" +DEPEND="virtual/x11" S="${WORKDIR}/${MY_P}" @@ -34,12 +37,12 @@ src_compile() { || die "8-bit make failed" mv rasmol rasmol.8 make clean - make DEPTHDEF=-DSIXTEENBIT CC=${CC} \ + make DEPTHDEF=-DSIXTEENBIT CC="$(gcc-getCC)" \ CDEBUGFLAGS="${CFLAGS}" \ || die "16-bit make failed" mv rasmol rasmol.16 make clean - make DEPTHDEF=-DTHIRTYTWOBIT CC=${CC} \ + make DEPTHDEF=-DTHIRTYTWOBIT CC="$(gcc-getCC)" \ CDEBUGFLAGS="${CFLAGS}" \ || die "32-bit make failed" mv rasmol rasmol.32 diff --git a/app-sci/rasmol/rasmol-2.7.2.1.1.ebuild b/app-sci/rasmol/rasmol-2.7.2.1.1.ebuild index 7d12ec9b5131..67f89a4dc2ad 100644 --- a/app-sci/rasmol/rasmol-2.7.2.1.1.ebuild +++ b/app-sci/rasmol/rasmol-2.7.2.1.1.ebuild @@ -1,18 +1,21 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/rasmol/rasmol-2.7.2.1.1.ebuild,v 1.2 2004/04/19 12:20:49 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/rasmol/rasmol-2.7.2.1.1.ebuild,v 1.3 2004/04/27 08:23:44 vapier Exp $ + +inherit gcc MY_P="RasMol_${PV}" DESCRIPTION="Free program that displays molecular structure." HOMEPAGE="http://www.openrasmol.org/" -KEYWORDS="~x86" +SRC_URI="http://www.bernstein-plus-sons.com/software/${MY_P}.tar.gz" + +LICENSE="as-is" SLOT="0" +KEYWORDS="~x86" IUSE="" -LICENSE="as-is" -DEPEND="virtual/x11" -SRC_URI="http://www.bernstein-plus-sons.com/software/${MY_P}.tar.gz" +DEPEND="virtual/x11" S="${WORKDIR}/${MY_P}" |