diff options
-rw-r--r-- | editors/staroffice60/files/wrapper | 15 | ||||
-rw-r--r-- | editors/staroffice70/files/wrapper | 15 | ||||
-rw-r--r-- | german/staroffice70/files/wrapper | 15 |
3 files changed, 45 insertions, 0 deletions
diff --git a/editors/staroffice60/files/wrapper b/editors/staroffice60/files/wrapper new file mode 100644 index 0000000..f0f7d81 --- /dev/null +++ b/editors/staroffice60/files/wrapper @@ -0,0 +1,15 @@ +#!/bin/sh +# +# $FreeBSD: /tmp/pcvs/ports/editors/staroffice60/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 diff --git a/editors/staroffice70/files/wrapper b/editors/staroffice70/files/wrapper new file mode 100644 index 0000000..2d33cce --- /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 diff --git a/german/staroffice70/files/wrapper b/german/staroffice70/files/wrapper new file mode 100644 index 0000000..2bf1fd7 --- /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 |