summaryrefslogtreecommitdiff
path: root/editors/openoffice-1.1-devel/files/openoffice-wrapper
blob: 519b0b7808e30207b8d08e5a279da4ece9bd0a9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#
# $FreeBSD: /tmp/pcvs/ports/editors/openoffice-1.1-devel/files/Attic/openoffice-wrapper,v 1.2 2002-10-21 16:46:37 mbr Exp $

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

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