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 /german | |
parent | Sort PLIST. (diff) |
Add staroffice6 wrapper script.
Notes
Notes:
svn path=/head/; revision=74874
Diffstat (limited to 'german')
-rw-r--r-- | german/staroffice70/files/wrapper | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/german/staroffice70/files/wrapper b/german/staroffice70/files/wrapper new file mode 100644 index 000000000000..2bf1fd79f7f1 --- /dev/null +++ b/german/staroffice70/files/wrapper @@ -0,0 +1,15 @@ +#!/bin/sh +# +# $FreeBSD: /tmp/pcvs/ports/german/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 |