summaryrefslogtreecommitdiff
path: root/editors/openoffice.org-1.1-devel/files/openoffice-wrapper
blob: a0f2d735a381b25efbbd5830c28170bd8f070584 (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.org-1.1-devel/files/Attic/openoffice-wrapper,v 1.1 2002-10-18 22:41:29 mbr Exp $

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

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