diff options
author | Martin Blapp <mbr@FreeBSD.org> | 2003-02-05 14:11:27 +0000 |
---|---|---|
committer | Martin Blapp <mbr@FreeBSD.org> | 2003-02-05 14:11:27 +0000 |
commit | 90b9b1bb193b19f704e0a0fa3b844ac15bc3dc1a (patch) | |
tree | 9401ec9f2574f1be2a806679ca9cc3a64229acd0 /editors/staroffice70 | |
parent | b2188ff6f304c32eb7246c7f7ba9b35acfa7a65f (diff) | |
download | ports-90b9b1bb193b19f704e0a0fa3b844ac15bc3dc1a.tar.gz ports-90b9b1bb193b19f704e0a0fa3b844ac15bc3dc1a.zip |
Add staroffice6 wrapper script.
Notes
Notes:
svn path=/head/; revision=74874
Diffstat (limited to 'editors/staroffice70')
-rw-r--r-- | editors/staroffice70/files/wrapper | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/editors/staroffice70/files/wrapper b/editors/staroffice70/files/wrapper new file mode 100644 index 000000000000..2d33ccef2198 --- /dev/null +++ b/editors/staroffice70/files/wrapper @@ -0,0 +1,15 @@ +#!/bin/sh +# +# $FreeBSD: /tmp/pcvs/ports/editors/staroffice70/files/Attic/wrapper,v 1.1 2003-02-05 14:11:27 mbr Exp $ + +sopath=%%PREFIX%%/staroffice6.0/program/ +program=`echo $0 | sed -e 's|.*-||'` + +case $program in +$0) + exec $sopath/soffice "$@" + ;; + *) + exec $sopath/$program "$@" + ;; +esac |