blob: 596bf94a8f9297014c085b4751dad1093c4604d5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# ex:ts=8
# Ports collection makefile for: JRobin
# Date created: Mar 9, 2005
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= jrobin
PORTVERSION= 1.5.8
PORTREVISION= 1
CATEGORIES= databases java
MASTER_SITES= http://repo.opennms.org/maven2/org/${PORTNAME}/${PORTNAME}/${PORTVERSION}/
DISTNAME= ${PORTNAME}-${PORTVERSION}
EXTRACT_SUFX= .jar
EXTRACT_ONLY=
MAINTAINER= ports@FreeBSD.org
COMMENT= A pure Java alternative to RRDTool
USE_JAVA= yes
JAVA_VERSION= 1.5+
NO_BUILD= yes
CLASSES= jrobin
do-install:
.for c in ${CLASSES}
${INSTALL_DATA} ${DISTDIR}/${c}-${PORTVERSION}.jar ${JAVAJARDIR}/${c}.jar
@${ECHO} '${JAVAJARDIR:S,^${PREFIX}/,,}/${c}.jar' >> ${TMPPLIST}
.endfor
.include <bsd.port.mk>
|