textproc/py-xml: support stage [1]
- Convert to options - Use auto plist PR: 192322 Submitted by: christian.mangin gmail com
This commit is contained in:
parent
077e66947d
commit
45d50a2f7d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=363825
2 changed files with 27 additions and 1105 deletions
|
@ -9,65 +9,50 @@ MASTER_SITES= SF/py${PORTNAME}/py${PORTNAME}/${PORTVERSION}
|
|||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
DISTNAME= PyXML-${PORTVERSION}
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= PyXML: Python XML library enhancements
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Python XML library enhancements
|
||||
|
||||
USE_PYTHON= yes
|
||||
USE_PYDISTUTILS= yes
|
||||
PYDISTUTILS_PKGNAME= PyXML
|
||||
PYDISTUTILS_AUTOPLIST= yes
|
||||
|
||||
OPTIONS_DEFINE= DOCS XSLT XPATH
|
||||
OPTIONS_DEFAULT=XPATH
|
||||
|
||||
NO_STAGE= yes
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
CPIOARGS= --quiet -pdum -R
|
||||
DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
|
||||
EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}
|
||||
PLIST_SUB+= PACKAGE_DIR=_xmlplus
|
||||
PORTEXAMPLES= *
|
||||
PORTDOCS= *
|
||||
|
||||
# PyXML's XPath support for minidom (xml.xpath) is functional and is
|
||||
# installed by default, unless WITHOUT_XPATH is defined.
|
||||
#
|
||||
# PyXML's XSLT support for minidom (xml.xslt) is experimental, and may
|
||||
# render PyXML incompatible with modern versions of 4Suite. Therefore,
|
||||
# this port will not install it by default, unless WITH_XSLT is defined.
|
||||
# These defaults are the same as when PyXML is installed independently.
|
||||
#
|
||||
# WITHOUT_XPATH is ignored if WITH_XSLT is defined.
|
||||
#
|
||||
# There are no mature XSLT processors that can operate directly on
|
||||
# minidom documents, but such documents can be converted to formats
|
||||
# that are supported. 4Suite, for example, can convert a DOM directly
|
||||
# to a Domlette, and other processors can make use of the serialized
|
||||
# form of the document.
|
||||
#
|
||||
.if defined(WITH_XSLT)
|
||||
PYDISTUTILS_BUILDARGS+= --with-xslt
|
||||
.if ${PORT_OPTIONS:MXSLT}
|
||||
PYDISTUTILS_BUILDARGS+= --with-xslt
|
||||
PYDISTUTILS_INSTALLARGS+= --with-xslt
|
||||
PLIST_SUB+= XPATH=""
|
||||
PLIST_SUB+= XSLT=""
|
||||
.elif defined(WITHOUT_XPATH)
|
||||
PYDISTUTILS_BUILDARGS+= --without-xpath --without-xslt
|
||||
PYDISTUTILS_INSTALLARGS+= --without-xpath --without-xslt
|
||||
PLIST_SUB+= XPATH="@comment "
|
||||
PLIST_SUB+= XSLT="@comment "
|
||||
.else
|
||||
PYDISTUTILS_BUILDARGS+= --with-xpath --without-xslt
|
||||
PYDISTUTILS_INSTALLARGS+= --with-xpath --without-xslt
|
||||
PLIST_SUB+= XPATH=""
|
||||
PLIST_SUB+= XSLT="@comment "
|
||||
PYDISTUTILS_BUILDARGS+= --without-xslt
|
||||
PYDISTUTILS_INSTALLARGS+= --without-xslt
|
||||
.endif
|
||||
.if ${PORT_OPTIONS:MXPATH}
|
||||
PYDISTUTILS_BUILDARGS+= --with-xpath
|
||||
PYDISTUTILS_INSTALLARGS+= --with-xpath
|
||||
.else
|
||||
PYDISTUTILS_BUILDARGS+= --without-xpath
|
||||
PYDISTUTILS_INSTALLARGS+= --without-xpath
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
@ ${MKDIR} ${DOCSDIR}
|
||||
${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PACKAGE_DIR} -name '*.so' | ${XARGS} ${STRIP_CMD}
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
.for docfile in ANNOUNCE CREDITS LICENCE README* TODO
|
||||
@ ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR}
|
||||
@${INSTALL_DATA} ${WRKSRC}/${docfile} ${STAGEDIR}${DOCSDIR}
|
||||
.endfor
|
||||
@ cd ${WRKSRC}/doc && ${FIND} * \
|
||||
| ${CPIO} ${CPIOARGS} ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}
|
||||
@ ${MKDIR} ${EXAMPLESDIR}
|
||||
@ cd ${WRKSRC} && ${FIND} demo test \
|
||||
| ${CPIO} ${CPIOARGS} ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR}
|
||||
.endif
|
||||
@cd ${WRKSRC}/doc && ${FIND} * \
|
||||
| ${CPIO} ${CPIOARGS} ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${DOCSDIR}
|
||||
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
||||
@cd ${WRKSRC} && ${FIND} demo test \
|
||||
| ${CPIO} ${CPIOARGS} ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${EXAMPLESDIR}
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue