mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
3a47cac6bf
- Allow staging - Switch from easy_install to install - Remove leading article from COMMENT - Remove now useless NOPORTDOCS NOPORTEXAMPLES - Use python auto plist
41 lines
923 B
Makefile
41 lines
923 B
Makefile
# Created by: Johann Visagie <wjv@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= zsi
|
|
PORTVERSION= 2.0
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= net python
|
|
MASTER_SITES= SF/pywebsvcs/ZSI/ZSI-${PORTVERSION}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= ${PORTNAME:U}-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Pure Python module that provides an implementation of SOAP 1.1
|
|
|
|
BUILD_DEPENDS= ${PYXML}
|
|
RUN_DEPENDS= ${PYXML}
|
|
|
|
CONFLICTS= py-zsi-devel-2.*
|
|
|
|
USE_PYTHON= 2
|
|
USE_PYDISTUTILS=yes
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
PORTDOCS= *
|
|
PORTEXAMPLES= *
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for docfile in CHANGES README doc/zsi.* doc/*.tex
|
|
${INSTALL_DATA} ${WRKSRC}/${docfile} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
.for subdir in interop samples test
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/${subdir}
|
|
${CP} -rp ${WRKSRC}/${subdir}/* ${STAGEDIR}${EXAMPLESDIR}/${subdir}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|