mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
2bff1d7273
PR: ports/164928 Submitted by: Denis Generalov <gd@rambler-co.ru>
39 lines
854 B
Makefile
39 lines
854 B
Makefile
# Ports collection makefile for: py-rxp
|
|
# Date created: 10 May 2002
|
|
# Whom: Hye-Shik Chang <perky@fallin.lv>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rxp
|
|
PORTVERSION= 0.9
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= http://www.reportlab.com/ftp/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= pyRXP-${PORTVERSION:S/./-/}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Fast validating XML parser for Python
|
|
|
|
NO_WRKSUBDIR= yes
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_PKGNAME= pyRXP
|
|
PYDISTUTILS_PKGVERSION= 0.5
|
|
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/py-rxp
|
|
DOCSDIR= ${PREFIX}/share/doc/py-rxp
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${EXAMPLESDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/docs/* ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|