1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-05 01:55:52 +00:00
freebsd-ports/databases/jrobin/Makefile
Edwin Groothuis 7a33ed2408 [repocopy] net/jrobin -> databases/jrobin
Chase the migration of net/rrdtool to databases/rrdtool

PR:		ports/114313
Submitted by:	Edwin Groothuis <edwin@freebsd.org>
Approved by:	maintainer timeout
2007-08-11 11:31:45 +00:00

45 lines
923 B
Makefile

# ex:ts=8
# Ports collection makefile for: JRobin
# Date created: Mar 9, 2005
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= jrobin
PORTVERSION= 1.5.4
PORTREVISION= 1
CATEGORIES= databases java
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME= ${PORTNAME}-${PORTVERSION}-1
MAINTAINER= nemoliu@FreeBSD.org
COMMENT= A pure Java alternative to RRDTool
USE_JAVA= yes
USE_ANT= yes
JAVA_VERSION= 1.5+
ALL_TARGET= dist
WRKSRC= ${WRKDIR}/JRobinLite-${PORTVERSION}
BUILD_WRKSRC= ${WRKSRC}/ant
.if !defined(NOPORTDOCS)
ALL_TARGET+= javadoc
PORTDOCS= *
.endif
CLASSES= jrobin convertor inspector
do-install:
.for c in ${CLASSES}
${INSTALL_DATA} ${WRKSRC}/lib/${c}-${PORTVERSION}.jar ${JAVAJARDIR}/${c}.jar
@${ECHO} '${JAVAJARDIR:S,^${PREFIX}/,,}/${c}.jar' >> ${TMPPLIST}
.endfor
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${CP} -R ${WRKSRC}/doc/ ${DOCSDIR}
.endif
.include <bsd.port.mk>