summaryrefslogtreecommitdiff
path: root/math/py-Scientific
diff options
context:
space:
mode:
authordrochner <drochner>2001-05-14 16:22:35 +0000
committerdrochner <drochner>2001-05-14 16:22:35 +0000
commite30c298cb268a62d27a18569a054c14ef82d6fa4 (patch)
treeca3c50873ca24dd7fe9510f3383a5801ec5bbae4 /math/py-Scientific
parent5160816369af329b0adc0c0a3c4620feef2b1d09 (diff)
downloadpkgsrc-e30c298cb268a62d27a18569a054c14ef82d6fa4.tar.gz
use USE_PYTHON
Diffstat (limited to 'math/py-Scientific')
-rw-r--r--math/py-Scientific/Makefile25
-rw-r--r--math/py-Scientific/files/printpypath.py5
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, "")