aboutsummaryrefslogtreecommitdiff
path: root/editors/openoffice.org-vcltesttool/files/openoffice-wrapper
diff options
context:
space:
mode:
Diffstat (limited to 'editors/openoffice.org-vcltesttool/files/openoffice-wrapper')
-rw-r--r--editors/openoffice.org-vcltesttool/files/openoffice-wrapper25
1 files changed, 0 insertions, 25 deletions
diff --git a/editors/openoffice.org-vcltesttool/files/openoffice-wrapper b/editors/openoffice.org-vcltesttool/files/openoffice-wrapper
deleted file mode 100644
index a1abee081fe2..000000000000
--- a/editors/openoffice.org-vcltesttool/files/openoffice-wrapper
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD: /tmp/pcvs/ports/editors/openoffice.org-vcltesttool/files/Attic/openoffice-wrapper,v 1.7 2003-04-16 06:51:35 mbr Exp $
-
-oopath=%%PREFIX%%/OpenOffice.org-%%BUILD_NR%%/program/
-program=`echo $0 | sed -e 's|.*-||'`
-
-if [ ! $LANG ]; then
- export LANG=%%LANG%%
-fi
-
-if [ -e $HOME/OpenOffice.org644/setup.log ]; then
- if [ ! -e $HOME/OpenOffice.org644/user/config/soffice.cfg ]; then
- touch $HOME/OpenOffice.org644/user/config/soffice.cfg
- fi
-fi
-
-case $program in
-$0)
- cd $oopath && ./soffice "$@"
- ;;
- *)
- cd $oopath && exec ./$program "$@"
- ;;
-esac