summaryrefslogtreecommitdiff
path: root/editors/openoffice-1.0/files/openoffice.org-wrapper
blob: 150792e7fde884c91451043d29c4b02105360d4c (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.0/files/Attic/openoffice.org-wrapper,v 1.1 2005-07-29 02:16:38 maho Exp $

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

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