create bsd12 branch

This commit is contained in:
ziggi
2019-12-26 07:26:06 +00:00
commit 5cfdab6bfe
14432 changed files with 2272620 additions and 0 deletions

32
java/bsh/Makefile Normal file
View File

@@ -0,0 +1,32 @@
# Created by: Kimura Fuyuki <fuyuki@mj.0038.net>
# $FreeBSD: head/lang/bsh/Makefile 416242 2016-06-01 13:15:36Z mat $
PORTNAME= bsh
DISTVERSION= 2.0b6
CATEGORIES= lang java
MAINTAINER= pfg@FreeBSD.org
COMMENT= Beanshell java scripting language
USE_GITHUB= yes
GH_ACCOUNT= beanshell
GH_PROJECT= beanshell
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>

3
java/bsh/distinfo Normal file
View File

@@ -0,0 +1,3 @@
TIMESTAMP = 1464776415
SHA256 (beanshell-beanshell-2.0b6_GH0.tar.gz) = dbcd8296a0aa81b5edc80a5421841b968d031332ffcebf3b2c877969669f5cad
SIZE (beanshell-beanshell-2.0b6_GH0.tar.gz) = 1720334

5
java/bsh/files/bsh.sh.in Normal file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
#
# $FreeBSD: head/lang/bsh/files/bsh.sh.in 340872 2014-01-24 00:14:07Z mat $
JAVA_VERSION="%%JAVA_VERSION%%" exec "%%LOCALBASE%%/bin/java" -jar "%%JAVAJARDIR%%/%%JARNAME%%" "$@"

6
java/bsh/pkg-descr Normal file
View File

@@ -0,0 +1,6 @@
BeanShell is a small, free, embeddable Java source interpreter with object
scripting language features, written in Java. BeanShell dynamically executes
standard Java syntax and extends it with common scripting conveniences such as
loose types, commands, and method closures like those in Perl and JavaScript.
WWW: http://www.beanshell.org/