diff options
author | Johann Visagie <wjv@FreeBSD.org> | 2002-07-10 10:49:24 +0000 |
---|---|---|
committer | Johann Visagie <wjv@FreeBSD.org> | 2002-07-10 10:49:24 +0000 |
commit | 07a03bf0e7655fc4f2793e1ef6c0d3834ebe50eb (patch) | |
tree | 820976e14e64b0b92ac27d4cd9c2788fe5878fa3 /net/py-soapy/Makefile | |
parent | - Update WWW: line. (Neglected to do so in previous commit.) (diff) |
Add py-soapy 0.1, A SOAP/XML schema library for Python.
Notes
Notes:
svn path=/head/; revision=62756
Diffstat (limited to 'net/py-soapy/Makefile')
-rw-r--r-- | net/py-soapy/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/net/py-soapy/Makefile b/net/py-soapy/Makefile new file mode 100644 index 000000000000..c132616555e9 --- /dev/null +++ b/net/py-soapy/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: py-soapy +# Date created: 10 July 2002 +# Whom: Johann Visagie <wjv@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= soapy +PORTVERSION= 0.1 +CATEGORIES= net python +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wjv@FreeBSD.org + +RUN_DEPENDS= ${PYXML} + +USE_PYTHON= yes +USE_PYDISTUTILS= yes + +post-install: +.if !defined(NOPORTDOCS) + @ ${MKDIR} ${DOCSDIR} + @ ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} + @ ${MKDIR} ${EXAMPLESDIR}/test + @ ${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR} + @ ${INSTALL_DATA} ${WRKSRC}/test/* ${EXAMPLESDIR}/test +.endif + +.include <bsd.port.mk> |