mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
2bd51f34ec
This library didn't get any updates for 14 years and it depends upon ancient textproc/py-xml, that should be kicked from the ports tree. No ports in the tree depending upon this one and we have dozen of modern and actively developed alternatives: - net/py-soapy - net/py-suds - net/py-simplesoap etc. So mark it deprecated and set expiration date to 2015-08-01 (to conform expiration date of another py-xml consumer - net-p2p/btqueue, so we can kick them both in the same day). Discussed with: sbz (maintainer)
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
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
|
|
|
|
LICENSE= PSFL
|
|
|
|
RUN_DEPENDS= ${PYXML}
|
|
|
|
DEPRECATED= Abandonware depending on ancient py-xml. Please use net/py-soappy instead
|
|
EXPIRATION_DATE= 2015-08-01
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME}
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME}
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
.endif
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/test
|
|
${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/test/* ${STAGEDIR}${EXAMPLESDIR}/test
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|