5633b4b358
This release fixes a problem with the old 2.1.0 release. No other work will be done on the 2.x branch. Approved by: thierry (mentor, implicit)
34 lines
682 B
Makefile
34 lines
682 B
Makefile
PORTNAME= bsh
|
|
DISTVERSION= 2.1.1
|
|
CATEGORIES= lang java
|
|
|
|
MAINTAINER= pfg@FreeBSD.org
|
|
COMMENT= Beanshell java scripting language
|
|
WWW= http://www.beanshell.org/
|
|
|
|
LICENSE= APACHE20
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= beanshell
|
|
GH_PROJECT= beanshell
|
|
|
|
USE_JAVA= 8
|
|
USE_ANT= yes
|
|
|
|
CONFLICTS_INSTALL= schilyutils # bin/bsh
|
|
|
|
ALL_TARGET= jarall
|
|
|
|
SUB_FILES= ${PORTNAME}.sh
|
|
SUB_LIST= JARNAME=${PORTNAME}.jar
|
|
|
|
PLIST_FILES= ${JAVAJARDIR}/${PORTNAME}.jar \
|
|
bin/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/dist/${PORTNAME}-${DISTVERSION}.jar \
|
|
${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh \
|
|
${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|