mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
e677f9ddcd
Jext is a powerful 100% pure Java text editor. Jext has been mainly designed for programmers. Thus, Jext provides a lot of useful functions for coders: syntax colorizing (Perl, XML/HTML, Java, JavaScript), auto indent, methods seeker for Java, source code formatting and much more... PR: 17111 Submitted by: Maxim Sobolev <sobomax@altavista.net>
20 lines
665 B
Plaintext
20 lines
665 B
Plaintext
--- jext.orig Wed Mar 1 22:40:49 2000
|
|
+++ jext Wed Mar 1 22:41:16 2000
|
|
@@ -4,11 +4,14 @@
|
|
# This version allows for an install in a central area like /usr/local/jext.
|
|
# Set the JEXT_HOME to /usr/local/jext and add this to your PATH.
|
|
# Norbert Seidel
|
|
-
|
|
+JEXT_HOME=%JEXT_HOME%
|
|
+CLASSPATH=$CLASSPATH:%JFC%:$JEXT_HOME/jext.jar
|
|
+export CLASSPATH
|
|
+export JEXT_HOME
|
|
# Add links to plugins
|
|
if [ ! -d "$HOME/.jext" ]; then
|
|
mkdir -p $HOME/.jext/xinsert
|
|
ln -s $JEXT_HOME/plugins $HOME/.jext
|
|
fi
|
|
|
|
-java -ms4m -mx16m -classpath $JEXT_HOME/jext.jar com.chez.powerteam.jext.Jext $* &
|
|
+%JAVAVM% -ms4m -mx16m -Djava.compiler=%JAVAJIT% com.chez.powerteam.jext.Jext $*
|