mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
d424283e95
Horia Racoviceanu <horia at racoviceanu.com> wishes to maintain these ports with my help. textproc/docbook2odf - Pass maintainership to horia at racoviceanu.com - Break lines around 80 characters - Change pkg-plist, remove mtree textproc/py-ltxml - Pass maintainership to horia at racoviceanu.com - Break lines around 80 characters textproc/xsv - Pass maintainership to horia at racoviceanu.com - Remove blank characters
39 lines
950 B
Makefile
39 lines
950 B
Makefile
# Created by: Rusmir Dusko <nemysis@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xsv
|
|
PORTVERSION= 3.1
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= ftp://ftp.cogsci.ed.ac.uk/pub/XSV/
|
|
DISTNAME= ${PORTNAME:tu}-${DISTVERSION}
|
|
|
|
MAINTAINER= horia@racoviceanu.com
|
|
COMMENT= XML Schema Validator
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ltxml>0:${PORTSDIR}/textproc/py-ltxml
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
INSTALLS_EGGINFO= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
PORTDOCS= pc-shrinkwrap xsv-status.xml xsv-status.html
|
|
PORTEXAMPLES= triv.xml triv.xsd tiny.xml tiny.xsd
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
|
|
CFLAGS+= -fPIC
|
|
.endif
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTEXAMPLES:S|^|${WRKSRC}/|} ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.post.mk>
|