Bug 116817 - New port: devel/libreadline-java a JNI-wrapper around Readline
Summary: New port: devel/libreadline-java a JNI-wrapper around Readline
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Alejandro Pulver
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-10-02 10:40 UTC by Martin Kammerhofer
Modified: 2008-02-16 21:10 UTC (History)
0 users

See Also:


Attachments
file.shar (21.21 KB, text/plain)
2007-10-02 10:40 UTC, Martin Kammerhofer
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Martin Kammerhofer 2007-10-02 10:40:02 UTC
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.
Comment 1 Alejandro Pulver freebsd_committer freebsd_triage 2008-02-16 21:01:02 UTC
Responsible Changed
From-To: freebsd-ports-bugs->alepulver

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2008-02-16 21:03:54 UTC
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"
Comment 3 Alejandro Pulver freebsd_committer freebsd_triage 2008-02-16 21:06:27 UTC
State Changed
From-To: open->closed

New port added, with minor changes. Thanks!