2.7.2-3jpp
- Add non-versioned javadoc dir symlink.
- Crosslink with local J2SE javadocs.
- Spec cleanups, change to UTF-8.
2.7.2-2jpp
- Rebuild for JPackage 1.5.
Sat Mar 01 2003 Ville Skyttä <ville.skytta at iki.fi> - 2.7.2-1jpp
- Update to 2.7.2.
- Include antlr script and jEdit mode (see antlr-jedit RPM description).
- Use sed instead of bash 2 extension when symlinking jars during build.
Tue May 07 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net>
2.7.1-8jpp
- really section macro
- hardcoded distribution and vendor tag
- group tag again
Thu May 02 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net>
2.7.1-7jpp
- distribution tag
- group tag
- section macro
Fri Jan 18 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net>
2.7.1-6jpp
- versioned dir for javadoc
- no dependencies for manual and javadoc packages
- additional sources in individual archives
Sat Dec 01 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net>
2.7.1-5jpp
- javadoc in javadoc package
Wed Nov 21 2001 Christian Zoffoli <czoffoli@littlepenguin.org> 2.7.1-4jpp
- removed packager tag
- new jpp extension
Sat Oct 06 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net>
2.7.1-3jpp
- used a build file instead of makefile
- build classes instead of blindly jared them !
- used original tarball
- corrected license spelling
Sun Sep 30 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net>
2.7.1-2jpp
- first unified release
- s/jPackage/JPackage
Tue Aug 28 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net>
2.7.1-1mdk
- first Mandrake release
26 lines
435 B
Bash
26 lines
435 B
Bash
#!/bin/sh
|
|
#
|
|
# antlr script
|
|
# JPackage Project <http://www.jpackage.org/>
|
|
|
|
# Source functions library
|
|
if [ -f /usr/share/java-utils/java-functions ] ; then
|
|
. /usr/share/java-utils/java-functions
|
|
else
|
|
echo "Can't find functions library, aborting"
|
|
exit 1
|
|
fi
|
|
|
|
# Configuration
|
|
MAIN_CLASS="antlr.Tool"
|
|
BASE_FLAGS=""
|
|
BASE_JARS="antlr.jar"
|
|
|
|
# Set parameters
|
|
set_jvm
|
|
set_classpath $BASE_JARS
|
|
set_flags $BASE_FLAGS
|
|
|
|
# Let's start
|
|
run "$@"
|