diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 2000-09-06 12:19:39 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 2000-09-06 12:19:39 +0000 |
commit | eb64e250bb93fdffbe0943967b1cad774dd1f8b5 (patch) | |
tree | 2523329c55b6ca9bbe90e028a69fa33256459924 /math | |
parent | Updated to version 1.1.1 (diff) |
The RNG extension is now part of py-numeric.
Notes
Notes:
svn path=/head/; revision=32333
Diffstat (limited to 'math')
-rw-r--r-- | math/pygist/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/math/pygist/Makefile b/math/pygist/Makefile index ca1a7e02a619..5ab2489878a9 100644 --- a/math/pygist/Makefile +++ b/math/pygist/Makefile @@ -18,10 +18,10 @@ MAINTAINER= tg@FreeBSD.org BUILD_DEPENDS= python:${PORTSDIR}/lang/python \ ${LOCALBASE}/lib/yorick/1.4/lib/libgist.a:${PORTSDIR}/lang/yorick \ ${NUMPYDIR}/Numeric.py:${PORTSDIR}/math/numpy \ - ${RNGDIR}/Ranf.py:${PORTSDIR}/math/rng + ${RNGDIR}/RNG.so:${PORTSDIR}/math/numpy RUN_DEPENDS= python:${PORTSDIR}/lang/python \ ${NUMPYDIR}/Numeric.py:${PORTSDIR}/math/numpy \ - ${RNGDIR}/Ranf.py:${PORTSDIR}/math/rng + ${RNGDIR}/RNG.so:${PORTSDIR}/math/numpy WRKSRC= ${WRKDIR}/${DISTNAME}/Graphics CONFIGURE_ENV= PREFIX=${PREFIX} @@ -34,6 +34,13 @@ NUMPYDIR= ${PYTHONSCRIPTDIR}/site-packages/Numeric RNGDIR= ${PYTHONSCRIPTDIR}/site-packages/RNG EXAMPLEDIR= ${PREFIX}/share/examples/PyGist +post-patch: +.for file in Gist3D/Demo/demo5.py Gist3D/Demo/gistmeshtest.py \ + Narcisse/Demo/meshtest.py OOG/Demo/eztest.py \ + OOG/Demo/surftest3d.py OOG/Demo/surftest4d.py + ${PERL} -pi -e 's/from Ranf import/from RNG import/' ${WRKSRC}/${file} +.endfor + do-configure: @(cd ${WRKSRC} && ${CONFIGURE_ENV} python makethis.py) |