diff options
author | bicatali <bicatali@32389bae-6d03-0410-99cf-db05cde120eb> | 2006-02-07 13:36:03 +0000 |
---|---|---|
committer | bicatali <bicatali@32389bae-6d03-0410-99cf-db05cde120eb> | 2006-02-07 13:36:03 +0000 |
commit | 32ac84ef030756e4b847c4ed201b2d697702b986 (patch) | |
tree | d314679b430ef569946786589746b5fa867d70f0 /sci-libs/scipy/scipy-0.4.4.ebuild | |
parent | mkl-8.0.1.006.ebuild: improved cpu detection (diff) | |
download | sci-32ac84ef030756e4b847c4ed201b2d697702b986.tar.gz sci-32ac84ef030756e4b847c4ed201b2d697702b986.tar.bz2 sci-32ac84ef030756e4b847c4ed201b2d697702b986.zip |
added scipy-0.4.4
git-svn-id: http://overlays.gentoo.org/svn/proj/science/overlay@96 32389bae-6d03-0410-99cf-db05cde120eb
Diffstat (limited to 'sci-libs/scipy/scipy-0.4.4.ebuild')
-rw-r--r-- | sci-libs/scipy/scipy-0.4.4.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/sci-libs/scipy/scipy-0.4.4.ebuild b/sci-libs/scipy/scipy-0.4.4.ebuild new file mode 100644 index 000000000..ca499a542 --- /dev/null +++ b/sci-libs/scipy/scipy-0.4.4.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit distutils + +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +DESCRIPTION="Open source scientific tools for Python" +HOMEPAGE="http://www.scipy.org/" +LICENSE="BSD" + +SLOT="0" +IUSE="fftw" +KEYWORDS="~x86" +#keyworded to x86 only because of numpy + +RDEPEND=">=dev-lang/python-2.3.3 + >=dev-python/numpy-0.9.2 + virtual/blas + virtual/lapack + fftw? ( =sci-libs/fftw-2.1* )" + +# install doc claims fftw-2 is faster for complex ffts. +# wxwindows seems to have disapeared. +# f2py seems to be in numpy. + +DEPEND="${RDEPEND} + >=sys-devel/gcc-3" + +src_test() { + einfo "Testing installation ..." + python -c "import scipy; scipy.test(level=1)" || \ + die "Unit tests failed!" +} + +src_install() { + distutils_src_install + dodoc `ls *.txt` +} |