freebsd-ports/textproc/svn2cl/Makefile
Martin Wilke 284465970e svn2cl is a simple xsl transformation and shell script wrapper for generating
a classic GNU-style ChangeLog from a subversion repository log. It is made
from several changelog-like scripts using common xslt constructs found in
different places.

WWW: http://ch.tudelft.nl/~arthur/svn2cl/

PR:		ports/107007
Submitted by:	Alexander Logvinov <ports at logvinov.com>
2006-12-21 19:33:41 +00:00

41 lines
1.1 KiB
Makefile

# New ports collection makefile for: svn2cl
# Date created: 20 December 2006
# Whom: Alexander Logvinov <ports@logvinov.com>
#
# $FreeBSD$
#
PORTNAME= svn2cl
PORTVERSION= 0.8
CATEGORIES= textproc
MASTER_SITES= http://ch.tudelft.nl/~arthur/svn2cl/
MAINTAINER= ports@logvinov.com
COMMENT= Subversion ChangeLog generator
RUN_DEPENDS= ${LOCALBASE}/bin/xsltproc:${PORTSDIR}/textproc/libxslt \
${LOCALBASE}/bin/svn:${PORTSDIR}/devel/subversion
NO_BUILD= yes
MAN1= ${PORTNAME}.1
PORTDOCS= ChangeLog NEWS README TODO
DATAFILES= authors.xml svn2cl.xsl svn2cl.xsl svn2html.css svn2html.xsl
post-patch:
@${REINPLACE_CMD} -e 's|XSL="$$dir|XSL="${DATADIR}|' ${WRKSRC}/${PORTNAME}.sh
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.sh ${PREFIX}/bin/${PORTNAME}
${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1
@${MKDIR} ${DATADIR}
.for i in ${DATAFILES}
${INSTALL_DATA} ${WRKSRC}/${i} ${DATADIR}
.endfor
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>