diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-12-16 13:50:12 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-12-16 13:50:12 +0000 |
commit | 17799b3946327eff2e8c1e6e97b567cbb267144c (patch) | |
tree | e533ece7dfa37653c94ec36eb829ca6d93d2e77c /sci-chemistry | |
parent | Removal of fortran.eclass, #348851 (diff) | |
download | gentoo-2-17799b3946327eff2e8c1e6e97b567cbb267144c.tar.gz gentoo-2-17799b3946327eff2e8c1e6e97b567cbb267144c.tar.bz2 gentoo-2-17799b3946327eff2e8c1e6e97b567cbb267144c.zip |
Removal of fortran.eclass, #348851
(Portage version: 2.2.0_alpha8/cvs/Linux x86_64)
Diffstat (limited to 'sci-chemistry')
-rw-r--r-- | sci-chemistry/platon/ChangeLog | 5 | ||||
-rw-r--r-- | sci-chemistry/platon/platon-20101125.ebuild | 10 |
2 files changed, 8 insertions, 7 deletions
diff --git a/sci-chemistry/platon/ChangeLog b/sci-chemistry/platon/ChangeLog index 3882aa500849..639640fa0ef0 100644 --- a/sci-chemistry/platon/ChangeLog +++ b/sci-chemistry/platon/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-chemistry/platon # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/platon/ChangeLog,v 1.22 2010/11/25 19:10:36 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/platon/ChangeLog,v 1.23 2010/12/16 13:50:12 jlec Exp $ + + 16 Dec 2010; Justin Lecher <jlec@gentoo.org> platon-20101125.ebuild: + Removal of fortran.eclass, #348851 *platon-20101125 (25 Nov 2010) diff --git a/sci-chemistry/platon/platon-20101125.ebuild b/sci-chemistry/platon/platon-20101125.ebuild index 8fa4bf31ab4a..27108270f0e9 100644 --- a/sci-chemistry/platon/platon-20101125.ebuild +++ b/sci-chemistry/platon/platon-20101125.ebuild @@ -1,12 +1,10 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/platon/platon-20101125.ebuild,v 1.1 2010/11/25 19:10:36 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/platon/platon-20101125.ebuild,v 1.2 2010/12/16 13:50:12 jlec Exp $ EAPI="3" -inherit eutils flag-o-matic fortran multilib toolchain-funcs - -FORTRAN="g77 gfortran" +inherit eutils flag-o-matic multilib toolchain-funcs DESCRIPTION="Versatile, SHELX-97 compatible, multipurpose crystallographic tool" HOMEPAGE="http://www.cryst.chem.uu.nl/platon/" @@ -52,10 +50,10 @@ src_compile() { COMMAND="$(tc-getCC) -c ${CFLAGS} xdrvr.c" echo ${COMMAND} ${COMMAND} || die "Compilation of xdrvr.c failed" - COMMAND="${FORTRANC} -c ${FFLAGS:- -O2} -fno-second-underscore platon.f" + COMMAND="$(tc-getFC) -c ${FFLAGS:- -O2} -fno-second-underscore platon.f" echo ${COMMAND} ${COMMAND} || die "Compilation of platon.f failed" - COMMAND="${FORTRANC} -o platon ${LDFLAGS} platon.o xdrvr.o -lX11 ${F2C}" + COMMAND="$(tc-getFC) -o platon ${LDFLAGS} platon.o xdrvr.o -lX11 ${F2C}" echo ${COMMAND} ${COMMAND} || die "Linking failed" } |