diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2006-04-01 20:26:03 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2006-04-01 20:26:03 +0000 |
commit | 40a385adb9223e1a327f073cd35c9b5cac711626 (patch) | |
tree | b91bd0ae22257c90c1adcab7a7138c68649bf37e /sci-libs/scipy/scipy-0.4.8.ebuild | |
parent | Make gs-gnu default in base and remove the override in -bsd (diff) | |
download | gentoo-2-40a385adb9223e1a327f073cd35c9b5cac711626.tar.gz gentoo-2-40a385adb9223e1a327f073cd35c9b5cac711626.tar.bz2 gentoo-2-40a385adb9223e1a327f073cd35c9b5cac711626.zip |
New version
(Portage version: 2.0.54)
Diffstat (limited to 'sci-libs/scipy/scipy-0.4.8.ebuild')
-rw-r--r-- | sci-libs/scipy/scipy-0.4.8.ebuild | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/sci-libs/scipy/scipy-0.4.8.ebuild b/sci-libs/scipy/scipy-0.4.8.ebuild new file mode 100644 index 000000000000..3bb9ae90c19b --- /dev/null +++ b/sci-libs/scipy/scipy-0.4.8.ebuild @@ -0,0 +1,73 @@ +# 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.8.ebuild,v 1.1 2006/04/01 20:26:03 ribosome Exp $ + +inherit distutils fortran + +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="~amd64 ~x86" + +# did not use virtual/blas and virtual/lapack +# because doc says scipy needs to compile all libraries with the same compiler +RDEPEND=">=dev-lang/python-2.3.3 + >=dev-python/numpy-0.9.6 + sci-libs/blas-atlas + sci-libs/lapack-atlas + fftw? ( =sci-libs/fftw-2.1* )" + +DEPEND="${RDEPEND} + =sys-devel/gcc-3*" + +# install doc claims fftw-2 is faster for complex ffts. +# install doc claims gcc-4 not fully tested and blas-atlas is compiled +# with g77 only, so force use of g77 here as well. +# wxwindows seems to have disapeared : ? +# f2py seems to be in numpy. + +FORTRAN="g77" + +pkg_setup() { + if built_with_use lapack-atlas ifc; then + ewarn "scipy needs consistency among fortran compiler!" + eerror "lapack-atlas was compiled with the ifc" + eerror "whereas blas-atlas and scipy will use the GNU compiler" + eerror "please re-emerge lapack-atlas with USE=-ifc" + die + fi +} + +src_unpack() { + unpack ${A} + cd "${S}" + + echo "[atlas]" > site.cfg + echo "include_dirs = /usr/include/atlas" >> site.cfg + echo "atlas_libs = lapack, blas, cblas, atlas" >> site.cfg + echo -n "library_dirs = /usr/$(get_libdir)/lapack:/usr/$(get_libdir):" \ + >> site.cfg + if [ -d "/usr/$(get_libdir)/blas/threaded-atlas" ]; then + echo "/usr/$(get_libdir)/blas/threaded-atlas" >> site.cfg + else + echo "/usr/$(get_libdir)/blas/atlas" >> site.cfg + fi + + export FFTW3=None + if use fftw; then + echo "[fftw] " >> site.cfg + echo "fftw_libs = rfftw, fftw" >> site.cfg + echo "fftw_opt_libs = rfftw_threads, fftw_threads" >> site.cfg + else + export FFTW=None + fi +} + +src_install() { + distutils_src_install + dodoc `ls *.txt` +} |