Java-Readline is a JNI wrapper around GNU Readline, libedit and libgetline. One might prefer libedit over GNU readline because of licensing issues. You need at least libedit-2.6.10_1, older versions do not work.
Responsible Changed From-To: freebsd-ports-bugs->alepulver I'll take it.
alepulver 2008-02-16 21:03:49 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/libreadline-java Makefile distinfo pkg-descr pkg-message devel/libreadline-java/files JReadlineCompleter.py jython.sh patch-Makefile patch-src-Makefile patch-src-native-Makefile patch-src-native-getline.c patch-src-native-org_gnu_readline_Readline.c patch-src-org-gnu-readline-Readline.java Log: Java-Readline is a port of GNU Readline for Java. Or, to be more precise, it is a JNI-wrapper to Readline. It is distributed under the LGPL. You must call Readline.load(ReadlineLibrary lib); before using any other methods. If you omit the call to the load()-method, the pure Java fallback solution is used. Possible values for lib are: ReadlineLibrary.PureJava ReadlineLibrary.GnuReadline ReadlineLibrary.Editline ReadlineLibrary.Getline Note that all programs using GnuReadline will fall under the GPL, since Gnu-Readline is GPL software! WWW: http://sourceforge.net/projects/java-readline/ PR: ports/116817 Submitted by: Martin Kammerhofer <mkamm at gmx.net> Revision Changes Path 1.2989 +1 -0 ports/devel/Makefile 1.1 +60 -0 ports/devel/libreadline-java/Makefile (new) 1.1 +3 -0 ports/devel/libreadline-java/distinfo (new) 1.1 +194 -0 ports/devel/libreadline-java/files/JReadlineCompleter.py (new) 1.1 +48 -0 ports/devel/libreadline-java/files/jython.sh (new) 1.1 +59 -0 ports/devel/libreadline-java/files/patch-Makefile (new) 1.1 +11 -0 ports/devel/libreadline-java/files/patch-src-Makefile (new) 1.1 +55 -0 ports/devel/libreadline-java/files/patch-src-native-Makefile (new) 1.1 +10 -0 ports/devel/libreadline-java/files/patch-src-native-getline.c (new) 1.1 +24 -0 ports/devel/libreadline-java/files/patch-src-native-org_gnu_readline_Readline.c (new) 1.1 +52 -0 ports/devel/libreadline-java/files/patch-src-org-gnu-readline-Readline.java (new) 1.1 +17 -0 ports/devel/libreadline-java/pkg-descr (new) 1.1 +5 -0 ports/devel/libreadline-java/pkg-message (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed New port added, with minor changes. Thanks!