* configure.ac (AC_CONFIG_FILES): Added src/scripts/jarsigner.
authortwisti <none@none>
Sun, 30 Apr 2006 17:18:02 +0000 (17:18 +0000)
committertwisti <none@none>
Sun, 30 Apr 2006 17:18:02 +0000 (17:18 +0000)
* src/scripts/Makefile.am (bin_SCRIPTS): Added jarsigner.
* src/scripts/.cvsignore: Likewise.
* src/scripts/jarsigner.in: New file.

configure.ac
src/scripts/.cvsignore
src/scripts/Makefile.am
src/scripts/jarsigner.in [new file with mode: 0644]

index 851de84219fbdef3dc3062549be84c4252df8360..0852a41a1e50f06c52903df8e3f2067f915a54d7 100644 (file)
@@ -777,6 +777,7 @@ AC_CONFIG_FILES([Makefile]
                [src/native/tools/Makefile]
                [src/native/vm/Makefile]
                [src/scripts/Makefile]
+               [src/scripts/jarsigner]
                [src/scripts/java]
                [src/scripts/rmic]
                [src/scripts/rmiregistry]
index c1901d6d7dec16d05df43e9a11fbfd5d22134f6c..93d8715655bba417571c0a4d56a2542bb51e0e3f 100644 (file)
@@ -1,6 +1,7 @@
 Makefile
 Makefile.in
 cacao
+jarsigner
 java
 javac
 rmic
index 4d3a754fdebc563c653ffa1cb477e927c9a81595..9083cec294df761b844dff624181658b08d1d183 100644 (file)
 ##
 ## Changes:
 ##
-## $Id: Makefile.am 4846 2006-04-26 09:02:39Z twisti $
+## $Id: Makefile.am 4864 2006-04-30 17:18:02Z twisti $
 
 ## Process this file with automake to produce Makefile.in
 
 bin_SCRIPTS = \
+       jarsigner \
        java \
        rmic \
        rmiregistry
diff --git a/src/scripts/jarsigner.in b/src/scripts/jarsigner.in
new file mode 100644 (file)
index 0000000..faf69cf
--- /dev/null
@@ -0,0 +1,40 @@
+#!/bin/sh
+
+## src/scripts/jarsigner.in
+##
+## Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
+## C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
+## E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
+## J. Wenninger, Institut f. Computersprachen - TU Wien
+##
+## This file is part of CACAO.
+##
+## This program is free software; you can redistribute it and/or
+## modify it under the terms of the GNU General Public License as
+## published by the Free Software Foundation; either version 2, or (at
+## your option) any later version.
+##
+## This program is distributed in the hope that it will be useful, but
+## WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+## General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, write to the Free Software
+## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+## 02110-1301, USA.
+##
+## Contact: cacao@cacaojvm.org
+##
+## Authors: Christian Thalinger
+##
+## Changes:
+##
+## $Id: rmic.in 4846 2006-04-26 09:02:39Z twisti $
+
+prefix="@prefix@"
+exec_prefix="@exec_prefix@"
+bindir="@bindir@"
+libdir="@CLASSPATH_PREFIX@/share/classpath"
+
+exec ${bindir}/cacao -cp ${libdir}/tools.zip gnu.classpath.tools.jarsigner.Main ${1+"$@"}