diff options
author | Johann Visagie <wjv@FreeBSD.org> | 2002-04-23 14:35:59 +0000 |
---|---|---|
committer | Johann Visagie <wjv@FreeBSD.org> | 2002-04-23 14:35:59 +0000 |
commit | 3dcf8856c911c509ffbe9c2dc13177fb13763644 (patch) | |
tree | da5634ba3667a3a1d4129613f0d4ef0fe97b7fbd /lang/py-compiler | |
parent | Update to 0.7.2b. (diff) |
- Mark FORBIDDEN if PYTHON_REL >= 220. The compiler is now part of
Python's standard library.
PR: 37088 (indirectly)
Submitted by: Andreas Schulz <ats@first.fhg.de>
Notes
Notes:
svn path=/head/; revision=58028
Diffstat (limited to 'lang/py-compiler')
-rw-r--r-- | lang/py-compiler/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lang/py-compiler/Makefile b/lang/py-compiler/Makefile index 98ceefa97d4c..8331614f4e43 100644 --- a/lang/py-compiler/Makefile +++ b/lang/py-compiler/Makefile @@ -23,6 +23,11 @@ DIST_SUBDIR= python USE_PYTHON= yes WRKSRC= ${PYTHON_WRKSRC}/Tools/${PORTNAME} +.include <bsd.port.pre.mk> +.if ${PYTHON_REL} >= 220 +FORBIDDEN= "Part of the standard library from Python 2.2 upwards" +.endif + do-build: @ cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} setup.py build @@ -30,4 +35,4 @@ do-install: @ cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} \ setup.py install -c -O1 --prefix=${PREFIX} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |