diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2009-07-22 22:30:54 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2009-07-22 22:30:54 +0000 |
commit | c1a0205fe8dd1d71560b0ce880efcf512b4b720e (patch) | |
tree | 0550348e74a5f7ada3d3f669b3930cdbece00e17 /sci-libs/scipy | |
parent | Version bump. Bug #259246 (diff) | |
download | gentoo-2-c1a0205fe8dd1d71560b0ce880efcf512b4b720e.tar.gz gentoo-2-c1a0205fe8dd1d71560b0ce880efcf512b4b720e.tar.bz2 gentoo-2-c1a0205fe8dd1d71560b0ce880efcf512b4b720e.zip |
Forced F77 to be FC to select proper fortran compiler. Closing bug #278714.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/scipy')
-rw-r--r-- | sci-libs/scipy/scipy-0.7.1.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sci-libs/scipy/scipy-0.7.1.ebuild b/sci-libs/scipy/scipy-0.7.1.ebuild index e78e77718bd0..1a4e02b9e596 100644 --- a/sci-libs/scipy/scipy-0.7.1.ebuild +++ b/sci-libs/scipy/scipy-0.7.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/scipy-0.7.1.ebuild,v 1.1 2009/07/21 21:40:03 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/scipy-0.7.1.ebuild,v 1.2 2009/07/22 22:30:54 bicatali Exp $ EAPI=2 NEED_PYTHON=2.4 @@ -39,7 +39,9 @@ pkg_setup() { export {FFTW,FFTW3,UMFPACK}=None use umfpack && unset UMFPACK append-ldflags -shared - [[ -z ${FC} ]] && FC=$(tc-getFC) + [[ -z ${FC} ]] && export FC=$(tc-getFC) + # hack to force F77 to be FC until bug #278772 is fixed + [[ -z ${F77} ]] && export F77=$(tc-getFC) export SCIPY_FCONFIG="config_fc --noopt --noarch" } |