1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

JRosetta provides a common base for graphical component that could be used

to build a graphical console in Swing with the latest requirements, such
as command history, completion and so on for instance for scripting language
or command line. This project can be seen as the evolution of the components
developed in JyConsole. For now, JRosetta provides only API and graphical
components. A Jython implementation for the scripting engine should be
available during the first semester 2009.

Functionalities
* Generic abstract API for script engine
* Completion window.
* Command history.
* Highly customisable, with external XML descriptor file. (Allow to specify
  the script engine to use, colors, font, shortcut...)

Platform compatibility
* JRosetta has been developed in pure Java, but relies on a JVM 1.5.
* No specific hardware is needed.

For further information, please contact us at the following adress :
contact at artenum.com

WWW: http://dev.artenum.com/projects/JRosetta

Feature safe:	yes
This commit is contained in:
Wen Heping 2010-02-24 01:44:34 +00:00
parent 4b986ac8c9
commit 7f1d0e3c1c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=250249
4 changed files with 60 additions and 0 deletions

View File

@ -124,6 +124,7 @@
SUBDIR += jmp
SUBDIR += jode
SUBDIR += jomp
SUBDIR += jrosetta
SUBDIR += jsdk
SUBDIR += jtiger
SUBDIR += jump

33
java/jrosetta/Makefile Normal file
View File

@ -0,0 +1,33 @@
# New ports collection makefile for: jrosetta
# Date created: 11 February 2010
# Whom: rfarmer@predatorlabs.net
#
# $FreeBSD$
#
PORTNAME= jrosetta
PORTVERSION= 1.0.2
CATEGORIES= java devel
MASTER_SITES= http://www.predatorlabs.net/dl/
EXTRACT_SUFX= -gpl.zip
MAINTAINER= rfarmer@predatorlabs.net
COMMENT= API for building a graphical console in Swing
USE_JAVA= yes
JAVA_VERSION= 1.5+
JAVA_BUILD= yes
JAVA_RUN= yes
USE_ANT= yes
ALL_TARGET= make
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}-gpl
PLIST_FILES= %%JAVAJARDIR%%/jrosetta-API.jar \
%%JAVAJARDIR%%/jrosetta-engine.jar
do-install:
${INSTALL_DATA} ${WRKSRC}/dist/jrosetta-API.jar ${JAVAJARDIR}
${INSTALL_DATA} ${WRKSRC}/dist/jrosetta-engine.jar ${JAVAJARDIR}
.include <bsd.port.mk>

3
java/jrosetta/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (jrosetta-1.0.2-gpl.zip) = 3a618078c118216eb2351e5db6e14a7d
SHA256 (jrosetta-1.0.2-gpl.zip) = 1d8a1de967ca00109b92dedc16bc27ceb68e61aea25f6ba9dc6f977d8d636c8d
SIZE (jrosetta-1.0.2-gpl.zip) = 69552

23
java/jrosetta/pkg-descr Normal file
View File

@ -0,0 +1,23 @@
JRosetta provides a common base for graphical component that could be used
to build a graphical console in Swing with the latest requirements, such
as command history, completion and so on for instance for scripting language
or command line. This project can be seen as the evolution of the components
developed in JyConsole. For now, JRosetta provides only API and graphical
components. A Jython implementation for the scripting engine should be
available during the first semester 2009.
Functionalities
* Generic abstract API for script engine
* Completion window.
* Command history.
* Highly customisable, with external XML descriptor file. (Allow to specify
the script engine to use, colors, font, shortcut...)
Platform compatibility
* JRosetta has been developed in pure Java, but relies on a JVM 1.5.
* No specific hardware is needed.
For further information, please contact us at the following adress :
contact at artenum.com
WWW: http://dev.artenum.com/projects/JRosetta