1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-17 03:25:46 +00:00
freebsd-ports/devel/statsvn/Makefile
Greg Larkin fb48271708 StatSVN retrieves information from a Subversion repository and
generates various tables and charts describing the project development,
e.g. timeline for the lines of code, contribution of each developer
etc. The current version of StatSVN generates a static suite of
HTML or XDOC documents containing tables and chart images.

WWW:    http://www.statsvn.org/
2009-03-25 23:32:10 +00:00

46 lines
886 B
Makefile

# New ports collection makefile for: statsvn
# Date created: 25 Mar 2009
# Whom: glarkin
#
# $FreeBSD$
#
PORTNAME= statsvn
PORTVERSION= 0.4.1
CATEGORIES= devel java
MASTER_SITES= SF
DISTNAME= ${PORTNAME}-${PORTVERSION}-source
MAINTAINER= glarkin@FreeBSD.org
COMMENT= Subversion repository activity report generator
RUN_DEPENDS= java:${PORTSDIR}/java/javavmwrapper \
subversion>=1.3:${PORTSDIR}/devel/subversion
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
DATADIR= ${JAVASHAREDIR}/${PORTNAME}
USE_ZIP= yes
USE_JAVA= yes
USE_ANT= yes
JAVA_VERSION= 1.4+
.if !defined(NOPORTDOCS)
ALL_TARGET= dist javadoc
.else
ALL_TARGET= dist
.endif
SUB_FILES= pkg-message
do-install:
@cd ${WRKSRC}/dist && ${COPYTREE_SHARE} . ${DATADIR}
.if !defined(NOPORTDOCS)
@cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${DOCSDIR}
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>