gcc/libjava/classpath/tools
Thomas Fitzsimmons df3e8c70fd re PR libgcj/27890 (lib/logging.properties pollutes common namespace)
2006-08-22  Thomas Fitzsimmons  <fitzsim@redhat.com>

	PR libgcj/27890
	* gnu/classpath/natSystemProperties.cc (insertSystemProperties):
	Set gnu.classpath.home.url to TOOLEXECLIBDIR.
	* configure.ac: Do not add --with-native-libdir to
	ac_configure_args.
	* java/security/libgcj.security: Remove file.
	* java/util/logging/logging.properties: Likewise.
	* classpath/m4/acinclude.m4 (CLASSPATH_TOOLEXECLIBDIR): New macro.
	* classpath/resource/Makefile.am (loggingdir): Define to
	toolexeclibdir.
	(securitydir): Likewise.
	* classpath/configure.ac: Call CLASSPATH_TOOLEXECLIBDIR.
	Set default nativeexeclibdir using toolexeclibdir.
	* HACKING: Fix classpath aclocal arguments.
	* Makefile.am (secdir): Remove variable.
	(propdir): Likewise.
	(AM_CXXFLAGS): Replace LIBDIR definition with TOOLEXECLIBDIR
	definition.
	(all_property_files): Remove variable.
	(install-data-local): Do not install libgcj.security or
	logging.properties.
	* configure, Makefile.in, classpath/configure,
	classpath/Makefile.in, classpath/native/jni/java-lang/Makefile.in,
	classpath/native/jni/midi-alsa/Makefile.in,
	classpath/native/jni/classpath/Makefile.in,
	classpath/native/jni/midi-dssi/Makefile.in,
	classpath/native/jni/Makefile.in,
	classpath/native/jni/java-nio/Makefile.in,
	classpath/native/jni/java-net/Makefile.in,
	classpath/native/jni/gconf-peer/Makefile.in,
	classpath/native/jni/java-io/Makefile.in,
	classpath/native/jni/xmlj/Makefile.in,
	classpath/native/jni/java-util/Makefile.in,
	classpath/native/jni/qt-peer/Makefile.in,
	classpath/native/jni/gtk-peer/Makefile.in,
	classpath/native/Makefile.in, classpath/native/jawt/Makefile.in,
	classpath/native/target/Linux/Makefile.in,
	classpath/native/target/Makefile.in,
	classpath/native/target/generic/Makefile.in,
	classpath/native/fdlibm/Makefile.in,
	classpath/native/plugin/Makefile.in,
	classpath/resource/Makefile.in, classpath/scripts/Makefile.in,
	classpath/tools/Makefile.in, classpath/doc/Makefile.in,
	classpath/doc/api/Makefile.in, classpath/lib/Makefile.in,
	classpath/external/Makefile.in,
	classpath/external/sax/Makefile.in,
	classpath/external/w3c_dom/Makefile.in,
	classpath/external/relaxngDatatype/Makefile.in,
	classpath/include/Makefile.in, classpath/aclocal.m4,
	classpath/examples/Makefile.in, aclocal.m4: Regenerate.

From-SVN: r116332
2006-08-22 20:37:36 +00:00
..
gnu/classpath/tools Imported GNU Classpath 0.92 2006-08-14 23:12:35 +00:00
.cvsignore String.java, [...]: Merge from GNU Classpath HEAD. 2006-06-09 16:07:07 +00:00
Makefile.am Imported GNU Classpath 0.92 2006-08-14 23:12:35 +00:00
Makefile.in re PR libgcj/27890 (lib/logging.properties pollutes common namespace) 2006-08-22 20:37:36 +00:00
README
appletviewer.in String.java, [...]: Merge from GNU Classpath HEAD. 2006-06-09 16:07:07 +00:00
gappletviewer.in Imported GNU Classpath 0.92 2006-08-14 23:12:35 +00:00
gjar.in Imported GNU Classpath 0.92 2006-08-14 23:12:35 +00:00
gjarsigner.in Imported GNU Classpath 0.92 2006-08-14 23:12:35 +00:00
gkeytool.in Imported GNU Classpath 0.92 2006-08-14 23:12:35 +00:00
gnative2ascii.in Imported GNU Classpath 0.92 2006-08-14 23:12:35 +00:00
gserialver.in Imported GNU Classpath 0.92 2006-08-14 23:12:35 +00:00
jarsigner.in String.java, [...]: Merge from GNU Classpath HEAD. 2006-06-09 16:07:07 +00:00
keytool.in String.java, [...]: Merge from GNU Classpath HEAD. 2006-06-09 16:07:07 +00:00
toolwrapper.c configure: Regenerate. 2006-06-14 03:38:34 +00:00

README

The GNU Classpath tools are stored in the tools.zip. They can be invoked by
putting this archive into classpath and specifying the tool main class as the
class to run (parameters usually follow). The current release contains the
following tools:

== GIOP tools ==

GIOP tools are used for creating the applications that use GIOP communication
protocol. It provides necessary support for org.omg.* and javax.rmi.* 
packages.

All GIOP tools support the --help option, for instance:
  java -cp tools.zip gnu.classpath.tools.giop.IorParser --help

The list of the currently available GIOP tools (name matches the main
class in gnu.classpath.tools.giop package):

* GRMIC -                RMI-IIOP stub and tie generator.
* NameService  -         GIOP transient naming service (this tool is called 
                         tnameserv in Sun's package).
* NameServicePersistent
               -         GIOP persistent naming service (this tool is called 
                         orbd in Sun's package).
* IorParser -            Parses the stringified form of the interoperable 
                         object references (IOR's).
                         
== RMI tools ==

RMI tools provide support for java.rmi package. All tools support 
the --help key by printing more information, for instance:
  java -cp tools.zip gnu.classpath.tools.rmi.RMIC --help

The list of the currently available RMI tools (name matches the main tool class
in gnu.classpath.tools.rmi package):
  
* RMIC -                 RMI stub and tie source code generator (complements
                         the ASM based bytecode generator in the separate
                         cp-tools project). This tool is only needed for 
                         research and backward-compatibile applications, as
                         Classpath supports the 1.5 feature to replace such 
                         stubs by proxy classes.
* REGISTRY -             The persistent RMI naming service.                                                   
* RMID -                 The persistent RMI activation daemon, supports the
                         java.rmi.activation package.
  
== Security tools ==

Security tools (currently) are used for signing and verifying JAR files
as well as (planned) generating and managing cryptographic tokens and
credentials.

The list of individual tools, the name of their main class that should be
invoked by the Java launcher, and a summary of what they provide follows:

* jarsigner              gnu.classpath.tools.jarsigner.Main
                         A drop-in replacement for the "jarsigner" tool.