Files
ports/java/jgraphx/Makefile
Raphael Kubo da Costa 366a97ec37 Reassign makc's ports back to the pool.
See "Maintainer Reset" in
https://www.freebsd.org/portmgr/policies_contributors.html. makc's last commit
was in March 31st (r412218), and his ports have been timing out since at least
July (r418155).

I also emailed him 2 weeks ago and have received no response so far.
2016-10-20 15:58:12 +00:00

42 lines
855 B
Makefile

# $FreeBSD$
PORTNAME= jgraphx
PORTVERSION= 2.5.1.0
DISTVERSIONPREFIX= v
CATEGORIES= java graphics
MAINTAINER= ports@FreeBSD.org
COMMENT= The Java Graph Diagram Component version X (jgraph v6+)
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/license.txt
USE_GITHUB= yes
GH_ACCOUNT= jgraph
USE_JAVA= yes
PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar
PORTDOCS= *
OPTIONS_DEFINE= COMPILE DOCS
COMPILE_DESC= Compile from source instead of using provided binary
COMPILE_USE= ANT=yes
do-build:
@${DO_NADA}
do-build-COMPILE-on:
@(cd ${BUILD_WRKSRC}; \
${SETENV} ${MAKE_ENV} ${ANT} ${MAKE_ARGS} ${ALL_TARGET})
do-install:
${INSTALL_DATA} ${WRKSRC}/lib/${PORTNAME}.jar \
${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar
do-install-DOCS-on:
${MKDIR} ${STAGEDIR}${DOCSDIR}
cd ${WRKSRC}/docs && ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>