diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-03-22 10:37:44 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-03-22 10:37:44 +0000 |
commit | 41471f1ceb6c5e06c7e8fe5e1261ac0c748a9c1e (patch) | |
tree | 64f3263463f823db2e03889b82c35459530f0be5 /devel/py-ro/Makefile | |
parent | c01db9ff98b274421001cbe9dc8af59409007b15 (diff) | |
download | FreeBSD-ports-41471f1ceb6c5e06c7e8fe5e1261ac0c748a9c1e.zip FreeBSD-ports-41471f1ceb6c5e06c7e8fe5e1261ac0c748a9c1e.tar.gz |
add py-ro 2.5
Python Remote Objects
Diffstat (limited to 'devel/py-ro/Makefile')
-rw-r--r-- | devel/py-ro/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/devel/py-ro/Makefile b/devel/py-ro/Makefile new file mode 100644 index 0000000..bd1c74d --- /dev/null +++ b/devel/py-ro/Makefile @@ -0,0 +1,37 @@ +# ex:ts=8 +# Ports collection makefile for: py-ro +# Date created: Mar 22, 2002 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= ro +PORTVERSION= 2.5 +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= pyro +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= Pyro-${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org + +USE_PYTHON= yes + +SETUP_CMD= cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} setup.py + +do-build: + @${SETUP_CMD} build + +do-install: + @${SETUP_CMD} install + +.if !defined(NOPORTDOCS) +post-install: + @${MKDIR} ${DOCSDIR} + ${CP} -R ${WRKSRC}/docs/ ${DOCSDIR} + @${MKDIR} ${EXAMPLESDIR} + ${CP} -R ${WRKSRC}/examples/ ${EXAMPLESDIR} +.endif + +.include <bsd.port.mk> |