summaryrefslogtreecommitdiff
path: root/editors/openoffice-3-devel/files/openoffice-wrapper
blob: a292a5d507ae7903194f23e7d3aa2b41c8d5cede (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#
# $FreeBSD$

oopath=%%PREFIX%%/OpenOffice.org%%FRELEASE_NR%%/program/
program=`echo $0 | sed -e 's|.*-%%RELEASE_NR%%-||'`

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