summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Dittrich <markusle@gentoo.org>2008-01-12 13:44:08 +0000
committerMarkus Dittrich <markusle@gentoo.org>2008-01-12 13:44:08 +0000
commit985ac2bf94a6a6604485ef63d3264dcb648b165c (patch)
treef1d1427f14cce766e2a9d679bef0d9365d622192 /sci-chemistry
parentwhitespace (diff)
downloadgentoo-2-985ac2bf94a6a6604485ef63d3264dcb648b165c.tar.gz
gentoo-2-985ac2bf94a6a6604485ef63d3264dcb648b165c.tar.bz2
gentoo-2-985ac2bf94a6a6604485ef63d3264dcb648b165c.zip
Fixed improper link path for libapbsblas.a (fixes bug #205310).
(Portage version: 2.1.4_rc14)
Diffstat (limited to 'sci-chemistry')
-rw-r--r--sci-chemistry/apbs/ChangeLog7
-rw-r--r--sci-chemistry/apbs/apbs-0.5.0.ebuild6
-rw-r--r--sci-chemistry/apbs/apbs-0.5.1.ebuild10
3 files changed, 15 insertions, 8 deletions
diff --git a/sci-chemistry/apbs/ChangeLog b/sci-chemistry/apbs/ChangeLog
index dfa3fb3fe686..af3879b88b65 100644
--- a/sci-chemistry/apbs/ChangeLog
+++ b/sci-chemistry/apbs/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sci-chemistry/apbs
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/ChangeLog,v 1.15 2007/07/31 22:23:46 je_fro Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/ChangeLog,v 1.16 2008/01/12 13:44:08 markusle Exp $
+
+ 12 Jan 2008; Markus Dittrich <markusle@gentoo.org> apbs-0.5.1.ebuild:
+ Fixed improper link path for libapbsblas.a (fixes bug #205310).
31 Jul 2007; Jeff Gardner <je_fro@gentoo.org> -apbs-0.4.0.ebuild:
Removing unused version/files.
diff --git a/sci-chemistry/apbs/apbs-0.5.0.ebuild b/sci-chemistry/apbs/apbs-0.5.0.ebuild
index e4afe84b17fb..897d5ca5a4fc 100644
--- a/sci-chemistry/apbs/apbs-0.5.0.ebuild
+++ b/sci-chemistry/apbs/apbs-0.5.0.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-0.5.0.ebuild,v 1.2 2007/02/24 18:39:08 je_fro Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-0.5.0.ebuild,v 1.3 2008/01/12 13:44:08 markusle Exp $
inherit eutils fortran
@@ -38,7 +38,7 @@ src_compile() {
econf ${myconf} || die "configure failed"
# build
- make DESTDIR=${D} || die "make failed"
+ make DESTDIR="${D}" || die "make failed"
}
src_install() {
diff --git a/sci-chemistry/apbs/apbs-0.5.1.ebuild b/sci-chemistry/apbs/apbs-0.5.1.ebuild
index 0580109c9490..253981b9b917 100644
--- a/sci-chemistry/apbs/apbs-0.5.1.ebuild
+++ b/sci-chemistry/apbs/apbs-0.5.1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-0.5.1.ebuild,v 1.1 2007/07/18 17:37:48 je_fro Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/apbs/apbs-0.5.1.ebuild,v 1.2 2008/01/12 13:44:08 markusle Exp $
inherit eutils fortran
@@ -29,6 +29,10 @@ pkg_setup() {
}
src_compile() {
+ # fix apbsblas
+ sed -e "s:-L\${prefix}/lib -lapbsblas:${S}//contrib/blas/.libs/libapbsblas.a:" \
+ -i configure \
+ || die "failed to fix configure"
# use blas
use blas && local myconf="--with-blas=-lblas"
@@ -38,7 +42,7 @@ src_compile() {
econf ${myconf} || die "configure failed"
# build
- make DESTDIR=${D} || die "make failed"
+ make DESTDIR="${D}" || die "make failed"
}
src_install() {