summaryrefslogtreecommitdiff
path: root/src/gfeditor.in
diff options
context:
space:
mode:
authorbjorn <bjorn@bringert.net>2008-09-11 08:30:29 +0000
committerbjorn <bjorn@bringert.net>2008-09-11 08:30:29 +0000
commit8a0e9077ce39a00c0b4ee83afcbe46dadab5a90b (patch)
treebf01015fd1c2ff2cb1136f21e2712963e9e20335 /src/gfeditor.in
parenta66913b00a00ac719baee23ae4ad0c6fceb6812d (diff)
Remove old editor shell script and configure stuff.
Diffstat (limited to 'src/gfeditor.in')
-rw-r--r--src/gfeditor.in42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/gfeditor.in b/src/gfeditor.in
deleted file mode 100644
index 129cd5e1f..000000000
--- a/src/gfeditor.in
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/sh
-
-prefix="@prefix@"
-
-case "@host@" in
- *-cygwin)
- prefix=`cygpath -w "$prefix"`;;
-esac
-
-exec_prefix="@exec_prefix@"
-GF_BIN_DIR="@bindir@"
-GF_DATA_DIR="@datadir@/GF-@PACKAGE_VERSION@"
-
-JAVA="@JAVA@"
-
-GF="$GF_BIN_DIR/gf"
-JARFILE="$GF_DATA_DIR/gfeditor.jar"
-
-if [ ! -x "${JAVA}" ]; then
- JAVA=`which java`
-fi
-
-if [ ! -x "${JAVA}" ]; then
- echo "No Java VM found."
- exit 1
-fi
-
-if [ ! -r "${JARFILE}" ]; then
- echo "Cannot read JAR file ${JARFILE}."
- exit 1
-fi
-
-if [ ! -x "${GF}" ]; then
- GF=`which gf`
-fi
-
-if [ ! -x "${GF}" ]; then
- echo "GF not found."
- exit 1
-fi
-
-exec "${JAVA}" -jar "${JARFILE}" -g "${GF}" $*