diff options
author | Diane Bruce <db@FreeBSD.org> | 2007-06-22 20:07:11 +0000 |
---|---|---|
committer | Diane Bruce <db@FreeBSD.org> | 2007-06-22 20:07:11 +0000 |
commit | 08da2a304885f9a9d6849287bc9c0ea802a55370 (patch) | |
tree | 4dc61ec06ab699eea2cb210f83aa3388b934dc3f | |
parent | - Make fetchable [1] and (diff) |
- Remove support for 4.x
- Fix glitch with gfortran attempting to use libg2c instead of libgfortran [1]
- math/py-numpy incorrect post-patch for site-cfg [2]
- Update version to 1.0.2
Notified by: kris (via pointyhat) [1]
PR: ports/112429 [2]
Approved by: ehaupt (mentor)
Notes
Notes:
svn path=/head/; revision=194095
-rw-r--r-- | math/py-numpy/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/math/py-numpy/Makefile b/math/py-numpy/Makefile index cde89e9eaa0c..b56331aaeafe 100644 --- a/math/py-numpy/Makefile +++ b/math/py-numpy/Makefile @@ -6,8 +6,7 @@ # PORTNAME= numpy -PORTVERSION= 1.0.1 -PORTREVISION= 1 +PORTVERSION= 1.0.2 PORTEPOCH= 1 CATEGORIES= math python MASTER_SITES= http://numpy.scipy.org/:doc \ @@ -45,10 +44,6 @@ LIB_DEPENDS+= lapack.4:${PORTSDIR}/math/lapack \ blas.2:${PORTSDIR}/math/blas .endif -.if ${OSVERSION} < 500000 -BROKEN= does not compile -.endif - pre-fetch: .if ${PYTHON_REL} < 200 @${ECHO} "Py-numpy doesn't work with Python versions < 2.0." @@ -68,12 +63,13 @@ post-patch: @${CP} ${FILESDIR}/site.cfg ${WRKSRC}/site.cfg @${REINPLACE_CMD} -e "s+%%GCCLIBDIR%%+${GCCLIBDIR}+" \ -e "s+%%LOCALBASE%%+${LOCALBASE}+" \ - -e "s+%%ATLASLIBS%%+lapack, blas+" ${WRKSRC}/site.cfg + -e "s+%%ATLASLIBS%%+alapack_r, f77blas_r, cblas_r, atlas_r+" \ + ${WRKSRC}/site.cfg .else @${CP} ${FILESDIR}/site.cfg ${WRKSRC}/site.cfg @${REINPLACE_CMD} -e "s+%%GCCLIBDIR%%+${GCCLIBDIR}+" \ -e "s+%%LOCALBASE%%+${LOCALBASE}+" \ - -e "s+%%ATLASLIBS%%+alapack_r, f77blas_r, cblas_r, atlas_r+" \ + -e "s+%%ATLASLIBS%%+lapack, blas+" \ ${WRKSRC}/site.cfg .endif @${REINPLACE_CMD} -e "s+%%GCCLIBDIR%%+${GCCLIBDIR}+" ${WRKSRC}/numpy/distutils/system_info.py |