summaryrefslogtreecommitdiff
path: root/editors/openoffice.org-3-RC/files/openoffice-wrapper
blob: a65c0ecf5776454b5d4364ca10216aa12a304703 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh
#
# $FreeBSD: /tmp/pcvs/ports/editors/openoffice.org-3-RC/files/Attic/openoffice-wrapper,v 1.5 2003-03-29 07:47:10 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.org1.1Beta/setup.log ]; then
	if [ ! -e $HOME/OpenOffice.org1.1Beta/user/config/soffice.cfg ]; then
		touch $HOME/OpenOffice.org1.1Beta/user/config/soffice.cfg
	fi
fi

case $program in
$0)
	cd $oopath && ./soffice "$@"
	;;
	*)
	cd $oopath && exec $program "$@"
	;;
esac