diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-05-24 12:37:22 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-05-24 12:37:22 +0000 |
commit | 837a08f33a0fcd47b3d5edfa0ef60ee6abb7254c (patch) | |
tree | c71824aac4e2d28fdb2094bcc167c4b87c25bc73 /net/py-xmlrpc/Makefile | |
parent | add p5-Shout (diff) |
add py-xmlrpc
A fast implementation of the xmlrpc spec for Python
PR: 26769
Submitted by: Chang, Hye-Shik <perky@python.or.kr>
Notes
Notes:
svn path=/head/; revision=43009
Diffstat (limited to 'net/py-xmlrpc/Makefile')
-rw-r--r-- | net/py-xmlrpc/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/net/py-xmlrpc/Makefile b/net/py-xmlrpc/Makefile new file mode 100644 index 000000000000..e113746ebee2 --- /dev/null +++ b/net/py-xmlrpc/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: py-xmlrpc +# Date created: 22 April 2001 +# Whom: Hye-Shik Chang <perky@python.or.kr> +# +# $FreeBSD$ +# + +PORTNAME= xmlrpc +PORTVERSION= 0.8.2 +CATEGORIES= net python +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PKGNAMEPREFIX}${PORTNAME} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION} + +MAINTAINER= perky@python.or.kr + +BUILD_DEPENDS= ${PYDISTUTILS} + +WRKSRC= ${WRKDIR}/${PORTNAME} +PLIST_SUB+= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR:S/^${LOCALBASE}\///g} + +USE_PYTHON= yes +SETUP_CMD= cd ${WRKSRC} && ${PYTHON_CMD} setup.py + +do-build: + ${SETUP_CMD} build + +do-install: + ${SETUP_CMD} install + +.include <bsd.port.mk> |