javacc stable port information

Package: javacc
Version: 5.0
Revision: 1
Description: Java Parser Generator
Type: java(1.5)
License: BSD
Maintainer: Benjamin Reed

Depends: system-java (>= 1.5-1)
BuildDepends: <<
ant-base (>= 1.7.1-3),
ant-junit (>= 1.6.5-1),
fink (>= 0.29.7-1),
system-java-dev (>= 1.5-1)
<<

Source: https://javacc.dev.java.net/files/documents/17/142527/%n-%vsrc.tar.gz
Source-MD5: 871d78a2a5859c2eebc712c1f8135be5
SourceDirectory: %n
PatchScript: perl -pi -e 's,
UseMaxBuildJobs: true
CompileScript: ant -Djavacc.root=`pwd` binary-distribution

InstallScript: <<
#!/bin/sh -ex

install -d -m 755 %i/bin

for class in javacc jjdoc jjtree; do
cat <%i/bin/$class
#!/bin/sh

source %p/bin/init.sh
/Library/Java/Home/bin/java $class "\$@"
END
done

chmod 755 %i/bin/*
install -d -m 755 %i/share/doc/%n
mv dist/%n-%v/doc/* %i/share/doc/%n/
mv dist/%n-%v/examples %i/share/doc/%n/
<<
JarFiles: dist/%n-%v/bin/lib/*.jar
DocFiles: LICENSE README

Homepage: http://javacc.dev.java.net/
DescDetail: <<
Java Compiler Compiler [tm] (JavaCC [tm]) is the most popular parser
generator for use with Java [tm] applications. A parser generator is
a tool that reads a grammar specification and converts it to a Java
program that can recognize matches to the grammar. In addition to
the parser generator itself, JavaCC provides other standard
capabilities related to parser generation such as tree building (via
a tool called JJTree included with JavaCC), actions, debugging, etc.
<<