mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
29 lines
655 B
Makefile
29 lines
655 B
Makefile
# Created by: Johann Visagie <wjv@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= soapy
|
|
PORTVERSION= 0.1
|
|
CATEGORIES= net python
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sbz@FreeBSD.org
|
|
COMMENT= SOAP/XML schema library for Python
|
|
|
|
RUN_DEPENDS= ${PYXML}
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
NO_STAGE= 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>
|