diff options
-rw-r--r-- | sci-chemistry/shelx/ChangeLog | 5 | ||||
-rw-r--r-- | sci-chemistry/shelx/shelx-20060317-r1.ebuild | 14 |
2 files changed, 10 insertions, 9 deletions
diff --git a/sci-chemistry/shelx/ChangeLog b/sci-chemistry/shelx/ChangeLog index 48db7439911a..ea8cbbd24f04 100644 --- a/sci-chemistry/shelx/ChangeLog +++ b/sci-chemistry/shelx/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-chemistry/shelx # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/shelx/ChangeLog,v 1.17 2010/08/20 15:11:08 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/shelx/ChangeLog,v 1.18 2010/12/16 13:58:31 jlec Exp $ + + 16 Dec 2010; Justin Lecher <jlec@gentoo.org> shelx-20060317-r1.ebuild: + Removal of fortran.eclass, #348851 20 Aug 2010; Donnie Berkholz <dberkholz@gentoo.org>; shelx-20060317-r1.ebuild: diff --git a/sci-chemistry/shelx/shelx-20060317-r1.ebuild b/sci-chemistry/shelx/shelx-20060317-r1.ebuild index 19efced4e67d..b1eb8af6403d 100644 --- a/sci-chemistry/shelx/shelx-20060317-r1.ebuild +++ b/sci-chemistry/shelx/shelx-20060317-r1.ebuild @@ -1,23 +1,22 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/shelx/shelx-20060317-r1.ebuild,v 1.6 2010/08/20 15:11:08 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/shelx/shelx-20060317-r1.ebuild,v 1.7 2010/12/16 13:58:31 jlec Exp $ -inherit autotools eutils flag-o-matic fortran +inherit autotools eutils flag-o-matic toolchain-funcs DESCRIPTION="Programs for crystal structure determination from single-crystal diffraction data" HOMEPAGE="http://shelx.uni-ac.gwdg.de/SHELX/" SRC_URI="${P}.tgz openmp? ( ${P}-mp.tgz )" -RESTRICT="fetch" + LICENSE="free-noncomm" SLOT="0" KEYWORDS="amd64 ~ppc x86" IUSE="dosformat openmp" -RDEPEND="" -DEPEND="${RDEPEND}" + S="${WORKDIR}/unix" -FORTRAN="ifc gfortran" +RESTRICT="fetch" pkg_nofetch() { elog "Go to ${HOMEPAGE}" @@ -60,8 +59,7 @@ src_compile() { esac econf \ - FC="${FORTRANC}" \ - || die "configure failed" + FC="$(tc-getFC)" emake || die "make failed" } |