diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-12-19 08:58:44 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-12-19 08:58:44 +0000 |
commit | 4d9b380add4383d0910c6e50792ddb5ecd941ff9 (patch) | |
tree | 3f52a0aafeb28ae931e7d73dcc8e54aa0b6319dc /sci-libs/blas-goto | |
parent | ppc64 stable wrt #344827 (diff) | |
download | gentoo-2-4d9b380add4383d0910c6e50792ddb5ecd941ff9.tar.gz gentoo-2-4d9b380add4383d0910c6e50792ddb5ecd941ff9.tar.bz2 gentoo-2-4d9b380add4383d0910c6e50792ddb5ecd941ff9.zip |
Fix for fortran detection, #349055
(Portage version: 2.2.0_alpha6/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/blas-goto')
-rw-r--r-- | sci-libs/blas-goto/ChangeLog | 6 | ||||
-rw-r--r-- | sci-libs/blas-goto/blas-goto-1.22-r1.ebuild | 6 | ||||
-rw-r--r-- | sci-libs/blas-goto/blas-goto-1.26.ebuild | 8 |
3 files changed, 12 insertions, 8 deletions
diff --git a/sci-libs/blas-goto/ChangeLog b/sci-libs/blas-goto/ChangeLog index 4f6a82a4c0a8..bb1984d11ffb 100644 --- a/sci-libs/blas-goto/ChangeLog +++ b/sci-libs/blas-goto/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-libs/blas-goto # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/blas-goto/ChangeLog,v 1.23 2010/12/16 14:24:01 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/blas-goto/ChangeLog,v 1.24 2010/12/19 08:58:44 jlec Exp $ + + 19 Dec 2010; Justin Lecher <jlec@gentoo.org> blas-goto-1.22-r1.ebuild, + blas-goto-1.26.ebuild: + Fix for fortran detection, #349055 16 Dec 2010; Justin Lecher <jlec@gentoo.org> blas-goto-1.22-r1.ebuild, blas-goto-1.26.ebuild: diff --git a/sci-libs/blas-goto/blas-goto-1.22-r1.ebuild b/sci-libs/blas-goto/blas-goto-1.22-r1.ebuild index b3abdd99a6e3..594e4bb02531 100644 --- a/sci-libs/blas-goto/blas-goto-1.22-r1.ebuild +++ b/sci-libs/blas-goto/blas-goto-1.22-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/blas-goto/blas-goto-1.22-r1.ebuild,v 1.8 2010/12/16 14:24:01 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/blas-goto/blas-goto-1.22-r1.ebuild,v 1.9 2010/12/19 08:58:44 jlec Exp $ inherit eutils flag-o-matic toolchain-funcs @@ -43,8 +43,8 @@ src_unpack() { # Set up FORTRAN 77 compiler case $(tc-getFC) in - g77) F_COMPILER=G77;; - gfortran) F_COMPILER=GFORTRAN;; + *g77) F_COMPILER=G77;; + *gfortran) F_COMPILER=GFORTRAN;; ifc|ifort) F_COMPILER=INTEL;; *) die "Invalid Fortran compiler: $(tc-getFC); valid are ${FORTRAN}." diff --git a/sci-libs/blas-goto/blas-goto-1.26.ebuild b/sci-libs/blas-goto/blas-goto-1.26.ebuild index ca5c801f55c3..4c971832e9ea 100644 --- a/sci-libs/blas-goto/blas-goto-1.26.ebuild +++ b/sci-libs/blas-goto/blas-goto-1.26.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/blas-goto/blas-goto-1.26.ebuild,v 1.3 2010/12/16 14:24:01 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/blas-goto/blas-goto-1.26.ebuild,v 1.4 2010/12/19 08:58:44 jlec Exp $ inherit eutils flag-o-matic toolchain-funcs @@ -13,7 +13,7 @@ LICENSE="tacc" SLOT="0" # See http://www.tacc.utexas.edu/resources/software/gotoblasfaq.php # for supported architectures -KEYWORDS="~x86 ~amd64" +KEYWORDS="~amd64 ~x86" IUSE="int64 threads doc" RESTRICT="mirror" @@ -43,8 +43,8 @@ src_unpack() { # Set up FORTRAN 77 compiler case $(tc-getFC) in - g77) F_COMPILER=G77;; - gfortran) F_COMPILER=GFORTRAN;; + *g77) F_COMPILER=G77;; + *gfortran) F_COMPILER=GFORTRAN;; ifc|ifort) F_COMPILER=INTEL;; *) die "Invalid Fortran compiler: $(tc-getFC); valid are ${FORTRAN}." |