4bd74c4a05
With the deprecation of Google Code and Apache Extras, the code has moved to github. - use Github - use a newer snapshot that sets the target to Java 1.5 (should be more compatible with newer Java). Bump port revision accordingly - add the "Beanshell" name to COMMENT, since PORTNAME is not clear - pass maintainership to submitter PR: 203354 Submitted by: pfg
37 lines
728 B
Makefile
37 lines
728 B
Makefile
# Created by: Kimura Fuyuki <fuyuki@mj.0038.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bsh
|
|
DISTVERSION= 2.0b5
|
|
PORTREVISION= 1
|
|
CATEGORIES= lang java
|
|
|
|
MAINTAINER= pfg@FreeBSD.org
|
|
COMMENT= Beanshell java scripting language
|
|
|
|
LICENSE= APACHE20
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= beanshell
|
|
GH_PROJECT= beanshell
|
|
GH_TAGNAME= f299e2b
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.6+
|
|
|
|
USE_ANT= yes
|
|
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>
|