diff options
author | drochner <drochner@pkgsrc.org> | 2001-05-14 16:22:35 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2001-05-14 16:22:35 +0000 |
commit | c8124ca977bd5c829566c6e6174611dc6d51decc (patch) | |
tree | ca3c50873ca24dd7fe9510f3383a5801ec5bbae4 /math/py-Scientific | |
parent | 52bc4f9c70cd1412da350979380f903982ad6fd8 (diff) | |
download | pkgsrc-c8124ca977bd5c829566c6e6174611dc6d51decc.tar.gz |
use USE_PYTHON
Diffstat (limited to 'math/py-Scientific')
-rw-r--r-- | math/py-Scientific/Makefile | 25 | ||||
-rw-r--r-- | math/py-Scientific/files/printpypath.py | 5 |
2 files changed, 7 insertions, 23 deletions
diff --git a/math/py-Scientific/Makefile b/math/py-Scientific/Makefile index b6bf3a206cf..51f399fbdb6 100644 --- a/math/py-Scientific/Makefile +++ b/math/py-Scientific/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2001/04/22 20:15:46 jtb Exp $ +# $NetBSD: Makefile,v 1.9 2001/05/14 16:22:35 drochner Exp $ DISTNAME= ScientificPython-2.2 PKGNAME= py-Scientific-2.2 @@ -10,21 +10,17 @@ MAINTAINER= packages@netbsd.org HOMEPAGE= http://starship.python.net/crew/hinsen/scientific.html COMMENT= Python modules for scientific computing -DEPENDS+= python>=1.5:../../lang/python DEPENDS+= netcdf>=3.0:../../devel/netcdf DEPENDS+= mpich>=1.2.1:../../parallel/mpi-ch DEPENDS+= py-Numeric-[0-9]*:../../math/py-Numeric -.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "mips" || ${MACHINE_ARCH} == "vax" -IGNORE="${PKGNAME} needs dynamic loading" -.endif +USE_PYTHON= yes +PYDISTUTILSPKG= yes +PYBINMODULE= yes -PLIST_SRC= ${WRKDIR}/.PLIST_SRC - -PYPREFIX_DEFAULT=${LOCALBASE} NETCDFPREFIX_DEFAULT=${LOCALBASE} MPICHPREFIX_DEFAULT=${LOCALBASE} -EVAL_PREFIX+= PYPREFIX=python NETCDFPREFIX=netcdf MPICHPREFIX=mpich +EVAL_PREFIX+= NETCDFPREFIX=netcdf MPICHPREFIX=mpich do-configure: ${SED} -e "s|@NETCDFPREFIX@|${NETCDFPREFIX}|g" \ @@ -34,17 +30,10 @@ do-configure: ${SED} -e "s|@MPICHPREFIX@|${MPICHPREFIX}|g" \ ${FILESDIR}/Setup.in > ${WRKSRC}/Src/MPI/Setup.in -do-build: - cd ${WRKSRC} && ${PYPREFIX}/bin/python setup.py build - cd ${WRKSRC}/Src/MPI && ${PYPREFIX}/bin/python compile.py - post-build: - (eval `${PYPREFIX}/bin/python ${FILESDIR}/printpypath.py` && \ - ${SED} "s|PYINC|$${PYINC}|g;s|PYSITELIB|$${PYSITELIB}|g" \ - ${PKGDIR}/PLIST > ${PLIST_SRC}) + cd ${WRKSRC}/Src/MPI && ${PYTHON} compile.py -do-install: - cd ${WRKSRC} && ${PYPREFIX}/bin/python setup.py install +post-install: ${INSTALL_PROGRAM} ${WRKSRC}/Src/MPI/mpipython ${PREFIX}/bin ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/py-Scientific cd ${WRKSRC} && ${INSTALL_DATA} README COPYRIGHT \ diff --git a/math/py-Scientific/files/printpypath.py b/math/py-Scientific/files/printpypath.py deleted file mode 100644 index aa53572f19c..00000000000 --- a/math/py-Scientific/files/printpypath.py +++ /dev/null @@ -1,5 +0,0 @@ -from distutils.sysconfig import get_python_inc -from distutils.sysconfig import get_python_lib - -print "PYINC=" + get_python_inc(0, "") -print "PYSITELIB=" + get_python_lib(0, 0, "") |