diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-04-29 17:53:59 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-04-29 17:53:59 +0000 |
commit | 1b3c2e0a2857ddd0430be1de100c1aac3105df2b (patch) | |
tree | 9ed8a2db3f609e08e41be8a7303224cc06e18af9 | |
parent | use USE_PYDISTUTILS (diff) |
use USE_PYDISTUTILS
Notes
Notes:
svn path=/head/; revision=58324
-rw-r--r-- | lang/py-compiler/Makefile | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lang/py-compiler/Makefile b/lang/py-compiler/Makefile index 8331614f4e43..92ec6120b506 100644 --- a/lang/py-compiler/Makefile +++ b/lang/py-compiler/Makefile @@ -17,10 +17,9 @@ DISTFILES= ${PYTHON_DISTFILE} MAINTAINER= wjv@FreeBSD.org -BUILD_DEPENDS= ${PYDISTUTILS} - DIST_SUBDIR= python USE_PYTHON= yes +USE_PYDISTUTILS= yes WRKSRC= ${PYTHON_WRKSRC}/Tools/${PORTNAME} .include <bsd.port.pre.mk> @@ -28,11 +27,4 @@ WRKSRC= ${PYTHON_WRKSRC}/Tools/${PORTNAME} FORBIDDEN= "Part of the standard library from Python 2.2 upwards" .endif -do-build: - @ cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} setup.py build - -do-install: - @ cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} \ - setup.py install -c -O1 --prefix=${PREFIX} - .include <bsd.port.post.mk> |