Source: antlr3
Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: Ludovic Claude <ludovic.claude@laposte.net>, Michael Koch <konqueror@gmx.de>
Build-Depends: debhelper (>= 7), cdbs, default-jdk,
 maven-debian-helper (>= 1.1), libstringtemplate-java (>= 3.2.1),
 libantlr-maven-plugin-java (>= 2.1), libmaven-plugin-testing-java,
 libmaven-javadoc-plugin-java, libmaven-install-plugin-java,
 default-jdk-doc, gcj-native-helper
Standards-Version: 3.9.0
Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/antlr3
Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/antlr3
Homepage: http://www.antlr.org/

Package: antlr3
Architecture: all
Depends: ${misc:Depends},
 default-jre-headless | java2-runtime-headless |
 java5-runtime-headless | java6-runtime-headless,
 libstringtemplate-java
Recommends: ${maven:OptionalDepends}
Suggests: antlr3-gcj
Description: language tool for constructing recognizers, compilers etc
 ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is 
 a language tool that provides a framework for constructing recognizers,
 compilers, and translators from grammatical descriptions containing C++
 or Java actions [You can use PCCTS 1.xx to generate C-based parsers].
 . 
 Computer language translation has become a common task. While 
 compilers and tools for traditional computer languages (such as C
 or Java) are still being built, their number is dwarfed by the thousands
 of mini-languages for which recognizers and translators are being 
 developed. Programmers construct translators for database formats, 
 graphical data files (e.g., PostScript, AutoCAD), text processing 
 files (e.g., HTML, SGML).  ANTLR is designed to handle all of your 
 translation tasks.

Package: antlr3-gcj
Architecture: any
Depends: antlr3 (>= ${source:Version}), ${misc:Depends}, ${shlibs:Depends}
Description: language tool for constructing recognizers, compilers etc (native code)
 ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is 
 a language tool that provides a framework for constructing recognizers,
 compilers, and translators from grammatical descriptions containing C++
 or Java actions [You can use PCCTS 1.xx to generate C-based parsers].
 . 
 This package contains the natively compiled code for use by gij.

Package: antlr3-doc
Architecture: all
Section: doc
Depends: ${misc:Depends}, default-jdk-doc
Suggests: libantlr3-java
Description: language tool for constructing compilers etc - documentation
 ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is 
 a language tool that provides a framework for constructing recognizers,
 compilers, and translators from grammatical descriptions containing C++
 or Java actions [You can use PCCTS 1.xx to generate C-based parsers].
 .
 This package provides the API documentation for ANTLR 3

Package: antlr3-maven-plugin
Architecture: all
Depends: ${misc:Depends}, antlr3 (>= ${source:Version}), 
 libmaven2-core-java, libplexus-compiler-api-java
Description: Maven plugin for ANTLR 3
 ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is 
 a language tool that provides a framework for constructing recognizers,
 compilers, and translators from grammatical descriptions containing C++
 or Java actions [You can use PCCTS 1.xx to generate C-based parsers].
 .
 This package provides the Maven plugin that allow to compile ANTLR 3
 grammars during a Maven build

Package: libantlr3-gunit-java
Architecture: all
Depends: ${misc:Depends}, antlr3 (>= ${source:Version}), junit4
Suggests: antlr3-gunit-maven-plugin
Description: Unit Test framework for ANTLR grammars
 gUnit is a "Unit Test" framework for ANTLR grammars. It provides a simple
 way to write and run automated tests for ANTLR grammars in a manner similar
 to Java unit testing framework jUnit. The basic idea is to create a bunch of
 input/output pairs for rules in a grammar and gUnit will verify the expected
 output/result. The input can be a single line or multiple lines of strings or
 even an external file. The output can be simply success or failure, an
 abstract syntax tree (AST), a rule return value, or some text output which
 could be a rule's template return value. The current version of gUnit has 2
 main functions, interpreter and jUnit generator. The interpreter interprets
 your gUnit script and runs unit tests using Java reflection to invoke methods
 in your parser objects. The generator, on the other hand, translates your
 gUnit script to jUnit Java code that you can compile and execute by hand.

Package: libantlr3-gunit-java-doc
Architecture: all
Section: doc
Depends: ${misc:Depends}, antlr3-doc, junit4-doc
Suggests: libantlr3-gunit-java
Description: API documentation for gUnit
 gUnit is a "Unit Test" framework for ANTLR grammars. It provides a simple
 way to write and run automated tests for ANTLR grammars in a manner similar
 to Java unit testing framework jUnit. The basic idea is to create a bunch of
 input/output pairs for rules in a grammar and gUnit will verify the expected
 output/result. The input can be a single line or multiple lines of strings or
 even an external file. The output can be simply success or failure, an
 abstract syntax tree (AST), a rule return value, or some text output which
 could be a rule's template return value. The current version of gUnit has 2
 main functions, interpreter and jUnit generator. The interpreter interprets
 your gUnit script and runs unit tests using Java reflection to invoke methods
 in your parser objects. The generator, on the other hand, translates your
 gUnit script to jUnit Java code that you can compile and execute by hand.
 .
 This package provides the API documentation for gUnit for ANTLR 3

Package: antlr3-gunit-maven-plugin
Architecture: all
Depends: ${misc:Depends}, libantlr3-gunit-java (>= ${source:Version}), 
 libmaven2-core-java, libplexus-compiler-api-java
Description: Maven plugin for gUnit, a unit test framework for ANTLR grammars
 gUnit is a "Unit Test" framework for ANTLR grammars. It provides a simple
 way to write and run automated tests for ANTLR grammars in a manner similar
 to Java unit testing framework jUnit. The basic idea is to create a bunch of
 input/output pairs for rules in a grammar and gUnit will verify the expected
 output/result. The input can be a single line or multiple lines of strings or
 even an external file. The output can be simply success or failure, an
 abstract syntax tree (AST), a rule return value, or some text output which
 could be a rule's template return value. The current version of gUnit has 2
 main functions, interpreter and jUnit generator. The interpreter interprets
 your gUnit script and runs unit tests using Java reflection to invoke methods
 in your parser objects. The generator, on the other hand, translates your
 gUnit script to jUnit Java code that you can compile and execute by hand.
 .
 This package provides the Maven plugin that allow to run gUnit tests during
 a Maven build


