diff options
author | db <db@FreeBSD.org> | 2007-02-27 23:33:24 +0800 |
---|---|---|
committer | db <db@FreeBSD.org> | 2007-02-27 23:33:24 +0800 |
commit | d5f878c7d930877b292f102e7a72418b0b60a126 (patch) | |
tree | 877e4facdfbfb40a89344c6222e5cb8c4a4a8efc /science/py-scipy | |
parent | 92f2176fe75474e1a099598b5e34b179042fe996 (diff) | |
download | freebsd-ports-gnome-d5f878c7d930877b292f102e7a72418b0b60a126.tar.gz freebsd-ports-gnome-d5f878c7d930877b292f102e7a72418b0b60a126.tar.zst freebsd-ports-gnome-d5f878c7d930877b292f102e7a72418b0b60a126.zip |
- Fix my MAINTAINER e-mail
- Stop portlint whining on Atlas
- integrated changes from maho
- maho wants WANT_FORTRAN knob in gfortran ports
Submitted by: maho
Approved: ehaupt (mentor)
Diffstat (limited to 'science/py-scipy')
-rw-r--r-- | science/py-scipy/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/science/py-scipy/Makefile b/science/py-scipy/Makefile index 7b0c7bd72b8c..05a933f39eb1 100644 --- a/science/py-scipy/Makefile +++ b/science/py-scipy/Makefile @@ -13,16 +13,20 @@ MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= scipy PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= db@db.net +MAINTAINER= db@FreeBSD.org COMMENT= Scientific tools for Python -BUILD_DEPENDS= ${PYNUMPY} \ +BUILD_DEPENDS+= ${PYNUMPY} \ ${LOCALBASE}/lib/libdjbfft.a:${PORTSDIR}/math/djbfft LIB_DEPENDS= fftw.2:${PORTSDIR}/math/fftw LATEST_LINK= py-${PORTNAME} OPTIONSFILE= ${PORT_DBDIR}/py-numpy/options +WANT_FORTRAN= yes #dummy +BUILD_DEPENDS+= gfortran42:${PORTSDIR}/lang/gcc42 +RUN_DEPENDS+= gfortran42:${PORTSDIR}/lang/gcc42 + USE_PYTHON= 2.3+ USE_PYDISTUTILS= yes USE_WX= 2.4-2.6 @@ -35,10 +39,14 @@ post-patch: .include <bsd.port.pre.mk> +.if ${ARCH} == "amd64" && ${OSVERSION} < 602101 +BROKEN= ldexpf is missing See http://lists.freebsd.org/pipermail/freebsd-amd64/2006-December/009263.html for details +.endif + .if defined(WITH_ATLAS) LIB_DEPENDS+= atlas.2:${PORTSDIR}/math/atlas .if !exists(${LOCALBASE}/lib/libalapack.a) -IGNORE= Atlas needs to be built with WITH_STATICLIB for scipy to function properly +IGNORE= atlas needs to be built with WITH_STATICLIB for scipy to function properly .endif .else LIB_DEPENDS+= lapack.4:${PORTSDIR}/math/lapack \ |