diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2006-09-24 01:10:06 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2006-09-24 01:10:06 +0000 |
commit | 7fa77a623a67535a49ef4de27d7646b6b29e8800 (patch) | |
tree | d4b904392f124d807b9081b3141bdc1c38dbe85e /sci-libs/scipy | |
parent | Newer atlas doesn't have USE=ifc, so stop checking for it. (diff) | |
download | gentoo-2-7fa77a623a67535a49ef4de27d7646b6b29e8800.tar.gz gentoo-2-7fa77a623a67535a49ef4de27d7646b6b29e8800.tar.bz2 gentoo-2-7fa77a623a67535a49ef4de27d7646b6b29e8800.zip |
Setting LDFLAGS at all entirely overrides the linker flags within the build and breaks it. See comp.lang.python thread 'Building things with setup.py' from 21 Sept. 2006.
(Portage version: 2.1.2_pre1)
Diffstat (limited to 'sci-libs/scipy')
-rw-r--r-- | sci-libs/scipy/ChangeLog | 7 | ||||
-rw-r--r-- | sci-libs/scipy/scipy-0.4.9.ebuild | 9 |
2 files changed, 13 insertions, 3 deletions
diff --git a/sci-libs/scipy/ChangeLog b/sci-libs/scipy/ChangeLog index 0a362091fd61..07f3cccceb07 100644 --- a/sci-libs/scipy/ChangeLog +++ b/sci-libs/scipy/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/scipy # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/ChangeLog,v 1.9 2006/09/24 01:07:04 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/ChangeLog,v 1.10 2006/09/24 01:10:06 dberkholz Exp $ + + 24 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; scipy-0.4.9.ebuild: + Setting LDFLAGS at all entirely overrides the linker flags within the build + and breaks it. See comp.lang.python thread 'Building things with setup.py' + from 21 Sept. 2006. 24 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; scipy-0.4.9.ebuild: Newer atlas doesn't have USE=ifc, so stop checking for it. diff --git a/sci-libs/scipy/scipy-0.4.9.ebuild b/sci-libs/scipy/scipy-0.4.9.ebuild index c6b6d139a836..2012cbd2ee3f 100644 --- a/sci-libs/scipy/scipy-0.4.9.ebuild +++ b/sci-libs/scipy/scipy-0.4.9.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/scipy-0.4.9.ebuild,v 1.2 2006/09/24 01:07:04 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/scipy-0.4.9.ebuild,v 1.3 2006/09/24 01:10:06 dberkholz Exp $ -inherit distutils flag-o-matic fortran +inherit distutils fortran SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" DESCRIPTION="Open source scientific tools for Python" @@ -115,6 +115,11 @@ src_compile() { die "${msg}" ;; esac + + # http://projects.scipy.org/scipy/numpy/ticket/182 + # Can't set LDFLAGS + unset LDFLAGS + distutils_src_compile \ config_fc \ --fcompiler=${SCIPY_FC} \ |