diff options
author | Justin Lecher <jlec@gentoo.org> | 2011-07-07 09:29:52 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2011-07-07 09:29:52 +0000 |
commit | a0c8afd95a26ee427d1b300ce771f98459d26ee5 (patch) | |
tree | 61cd3adaf2ebf50f0ddc5823c6f270e4f5cc329b /sci-chemistry | |
parent | Cleaning bug and fixing bugs #373921 and #374089 (diff) | |
download | gentoo-2-a0c8afd95a26ee427d1b300ce771f98459d26ee5.tar.gz gentoo-2-a0c8afd95a26ee427d1b300ce771f98459d26ee5.tar.bz2 gentoo-2-a0c8afd95a26ee427d1b300ce771f98459d26ee5.zip |
Fix for atlas detection as blas implementation
(Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
Diffstat (limited to 'sci-chemistry')
-rw-r--r-- | sci-chemistry/apbs/ChangeLog | 5 | ||||
-rw-r--r-- | sci-chemistry/apbs/apbs-1.3-r1.ebuild | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/sci-chemistry/apbs/ChangeLog b/sci-chemistry/apbs/ChangeLog index 21709882e67d..5f50c4309a3d 100644 --- a/sci-chemistry/apbs/ChangeLog +++ b/sci-chemistry/apbs/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-chemistry/apbs # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/ChangeLog,v 1.50 2011/07/04 09:27:37 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/ChangeLog,v 1.51 2011/07/07 09:29:52 jlec Exp $ + + 07 Jul 2011; Justin Lecher <jlec@gentoo.org> apbs-1.3-r1.ebuild: + Fix for atlas detection as blas implementation 04 Jul 2011; Justin Lecher <jlec@gentoo.org> apbs-1.3-r1.ebuild, +files/apbs-1.3-blas.patch: diff --git a/sci-chemistry/apbs/apbs-1.3-r1.ebuild b/sci-chemistry/apbs/apbs-1.3-r1.ebuild index 92d0b44e257d..d5ecba804bf2 100644 --- a/sci-chemistry/apbs/apbs-1.3-r1.ebuild +++ b/sci-chemistry/apbs/apbs-1.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-1.3-r1.ebuild,v 1.7 2011/07/04 09:27:37 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-1.3-r1.ebuild,v 1.8 2011/07/07 09:29:52 jlec Exp $ EAPI="3" @@ -71,7 +71,10 @@ src_prepare() { -i Makefile.am || die "Cannot correct package name" # this test is broken sed '/ion-pmf/d' -i examples/Makefile.am || die - sed 's:libmaloc.a:libmaloc.so:g' -i configure.ac || die + sed \ + -e 's:libmaloc.a:libmaloc.so:g' \ + -e 's:-lblas::g' \ + -i configure.ac || die eautoreconf } |