summaryrefslogtreecommitdiff
path: root/dummy/virtual-machine
diff options
context:
space:
mode:
authorOla Nordmann <olapc@yahoo.no>2002-02-05 15:23:01 +0000
committerOla Nordmann <olapc@yahoo.no>2002-02-05 15:23:01 +0000
commit71d2bfb3ae80d6a977224cb332c53c849b03de5c (patch)
treef126a38684486c11174b94aa545c2138f7f5237e /dummy/virtual-machine
parent196406f5864796382aaec1b375744b0574f0fa2c (diff)
downloadjava-common-71d2bfb3ae80d6a977224cb332c53c849b03de5c.tar.gz
Removed the dummy package code.
Diffstat (limited to 'dummy/virtual-machine')
-rw-r--r--dummy/virtual-machine/java-vm53
-rw-r--r--dummy/virtual-machine/java-vm.133
-rw-r--r--dummy/virtual-machine/java-vm.conf-jdk3
-rw-r--r--dummy/virtual-machine/java-vm.conf-kaffe2
4 files changed, 0 insertions, 91 deletions
diff --git a/dummy/virtual-machine/java-vm b/dummy/virtual-machine/java-vm
deleted file mode 100644
index c6cf344..0000000
--- a/dummy/virtual-machine/java-vm
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/bin/sh
-
-repository=/usr/share/java/repository
-conf=/etc/java/java-vm.conf
-
-java=`head -1 $conf`
-
-if [ ! -n "$java" ]
-then
- echo "Cannot find a Java virtual machine in $conf"
- exit 1
-fi
-
-defclasspath=`head -2 $conf | tail -1`
-
-if [ -n "$defclasspath" ]
-then
- MYCLASSPATH=${defclasspath}
-fi
-
-compliant=`head -3 $conf | tail -1`
-
-if [ "xx$compliant" != "xxCOMPLIANT" ]
-then
- if [ -n "$MYCLASSPATH" ]
- then
- MYCLASSPATH=${MYCLASSPATH}:$repository
- else
- MYCLASSPATH=$repository
- fi
-fi
-
-if [ -n "$CLASSPATH" ]
-then
- if [ -n "$MYCLASSPATH" ]
- then
- MYCLASSPATH=${MYCLASSPATH}:${CLASSPATH}
- else
- MYCLASSPATH=${CLASSPATH}
- fi
-fi
-
-if [ -n "$MYCLASSPATH" ]
-then
- CLASSPATH=$MYCLASSPATH
- export CLASSPATH
- #echo $CLASSPATH
-fi
-
-exec "$java" "$@"
-
-echo "Cannot run $java (found in $conf)"
-exit 1
diff --git a/dummy/virtual-machine/java-vm.1 b/dummy/virtual-machine/java-vm.1
deleted file mode 100644
index 0b057e0..0000000
--- a/dummy/virtual-machine/java-vm.1
+++ /dev/null
@@ -1,33 +0,0 @@
-.\" -*- nroff -*-
-.TH JAVA-VM "1" "November 1999" "DEBIAN"
-.SH NAME
-java-vm \- A dummy Java virtual machine for the Debian Java policy
-.SH SYNOPSIS
-.B java-vm
-.I "[options] files ..."
-.SH DESCRIPTION
-This manual page documents briefly the
-.BR java-vm
-command.
-.PP
-.B java-vm
-is a wrapper around the real Java virtual machine. It sets the
-CLASSPATH according to the Debian Java policy (if the virtual machine
-is not already compliant) and can also add other mandatory directories
-to the CLASSPATH. This is configured in /etc/java-vm (see examples
-hereunder).
-.PP
-Your own CLASSPATH will be saved and appended.
-.SH OPTIONS
-They are passed uninterpreted to the virtual machine.
-.SH FILES
-.TP
-.I /etc/java-vm
-java-vm configuration file.
-.SH "SEE ALSO"
-/usr/share/doc/java-virtual-machine-dummy
-and specially the "examples" directory.
-.SH AUTHOR
-This manual page was written by Stephane Bortzmeyer <bortzmeyer@debian.org>,
-and updated by Ola Lundqvist <opal@debian.org>,
-for the Debian GNU/Linux system (but may be used by others).
diff --git a/dummy/virtual-machine/java-vm.conf-jdk b/dummy/virtual-machine/java-vm.conf-jdk
deleted file mode 100644
index b6e2b20..0000000
--- a/dummy/virtual-machine/java-vm.conf-jdk
+++ /dev/null
@@ -1,3 +0,0 @@
-/usr/lib/jdk1.1/bin/java
-
-COMPLIANT
diff --git a/dummy/virtual-machine/java-vm.conf-kaffe b/dummy/virtual-machine/java-vm.conf-kaffe
deleted file mode 100644
index 1c92151..0000000
--- a/dummy/virtual-machine/java-vm.conf-kaffe
+++ /dev/null
@@ -1,2 +0,0 @@
-/usr/bin/kaffe
-