diff options
author | Alexander Botero-Lowry <alexbl@FreeBSD.org> | 2006-12-08 04:57:49 +0000 |
---|---|---|
committer | Alexander Botero-Lowry <alexbl@FreeBSD.org> | 2006-12-08 04:57:49 +0000 |
commit | 56160c3f254ab8242ed67372e582afb91890b7d5 (patch) | |
tree | 4f058d34ec75dd69034ccd9b733f8eb43e5ffb33 /Mk | |
parent | - recent devel/p5-PAR update (diff) |
- Add PYNUMPY macro to bsd.python.mk
Ports using Py-Numeric should be aware that it is considered deprecated
in favor of NumPy.
PR: 105544
Submitted by: Diane Bruce <db@db.net>
Approved by: maintainer timeout, python@ (self)
Notes
Notes:
svn path=/head/; revision=179155
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.python.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Mk/bsd.python.mk b/Mk/bsd.python.mk index b4a1d9977d21..1e5e354fdd06 100644 --- a/Mk/bsd.python.mk +++ b/Mk/bsd.python.mk @@ -99,6 +99,7 @@ Python_Include_MAINTAINER= python@FreeBSD.org # PYNUMERIC - Dependency line for the numeric extension. Py-Numeric-17 # is the last release that works with Python versions older # than 1.6. +# PYNUMPY - Dependency line for the new numeric extension.# py-numpy, Py-Numeric is deprecated. # # PYXML - Dependency line for the XML extension. As of Python-2.0, # this extension is in the base distribution. @@ -419,6 +420,7 @@ ZOPEPRODUCTDIR?= Products # Python 3rd-party modules PYDISTUTILS= ${PYTHON_LIBDIR}/distutils/core.py:${PYTHON_PORTSDIR} PYNUMERIC= ${PYTHON_SITELIBDIR}/Numeric/Numeric.py:${PORTSDIR}/math/py-numeric +PYNUMPY= ${PYTHON_SITELIBDIR}/numpy/core/numeric.py:${PORTSDIR}/math/py-numpy PYXML= ${PYTHON_SITELIBDIR}/_xmlplus/__init__.py:${PORTSDIR}/textproc/py-xml .if defined(PYTHON_REL) && ${PYTHON_REL} < 232 |