aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Junghans <ottxor@gentoo.org>2014-01-12 21:48:13 -0700
committerChristoph Junghans <ottxor@gentoo.org>2014-01-12 21:48:13 -0700
commit617ca5e85ba12815186459ea7b1eb33cd0af9af6 (patch)
treeed80d1884fbae31c54f95dd93282717c2efa6c97 /sci-chemistry/pesto
parentfixed die mastery (diff)
downloadsci-617ca5e85ba12815186459ea7b1eb33cd0af9af6.tar.gz
sci-617ca5e85ba12815186459ea7b1eb33cd0af9af6.tar.bz2
sci-617ca5e85ba12815186459ea7b1eb33cd0af9af6.zip
fixes suggested by bicatali
Package-Manager: portage-2.2.7
Diffstat (limited to 'sci-chemistry/pesto')
-rw-r--r--sci-chemistry/pesto/ChangeLog3
-rw-r--r--sci-chemistry/pesto/pesto-9999.ebuild13
2 files changed, 14 insertions, 2 deletions
diff --git a/sci-chemistry/pesto/ChangeLog b/sci-chemistry/pesto/ChangeLog
index c19507a5a..d4ba6d78b 100644
--- a/sci-chemistry/pesto/ChangeLog
+++ b/sci-chemistry/pesto/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 13 Jan 2014; Christoph Junghans <ottxor@gentoo.org> pesto-9999.ebuild:
+ fixes suggested by bicatali
+
*pesto-9999 (11 Jan 2014)
11 Jan 2014; Christoph Junghans <ottxor@gentoo.org> +metadata.xml,
diff --git a/sci-chemistry/pesto/pesto-9999.ebuild b/sci-chemistry/pesto/pesto-9999.ebuild
index 1c0abc318..50a39917d 100644
--- a/sci-chemistry/pesto/pesto-9999.ebuild
+++ b/sci-chemistry/pesto/pesto-9999.ebuild
@@ -6,7 +6,7 @@ EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
-inherit distutils-r1 fortran-2 mercurial toolchain-funcs
+inherit distutils-r1 flag-o-matic fortran-2 mercurial toolchain-funcs
IUSE=""
SRC_URI=""
@@ -20,10 +20,19 @@ SLOT="0"
KEYWORDS=""
RDEPEND="virtual/blas
- virtual/lapack"
+ virtual/lapack
+ dev-python/numpy[${PYTHON_USEDEP},lapack]
+ sci-libs/k3match[${PYTHON_USEDEP}]
+ sci-libs/scipy[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}"
DOCS=( README.txt )
EXAMPLES=( examples )
DISTUTILS_IN_SOURCE_BUILD=1
+
+src_configure() {
+ append-fflags "-shared -fPIC"
+ append-ldflags "-shared"
+ distutils-r1_src_configure
+}