diff options
author | mbr <mbr@FreeBSD.org> | 2003-02-05 22:11:27 +0800 |
---|---|---|
committer | mbr <mbr@FreeBSD.org> | 2003-02-05 22:11:27 +0800 |
commit | c48a32a5b74818667491577eca1d4ab56993a1e9 (patch) | |
tree | d33067e5ae44823ae86e103955600282b61c9a98 /editors | |
parent | 24461497535a289b96a086be2dcfaeb4f1c2ecf7 (diff) | |
download | freebsd-ports-gnome-c48a32a5b74818667491577eca1d4ab56993a1e9.tar.gz freebsd-ports-gnome-c48a32a5b74818667491577eca1d4ab56993a1e9.tar.zst freebsd-ports-gnome-c48a32a5b74818667491577eca1d4ab56993a1e9.zip |
Add staroffice6 wrapper script.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/staroffice60/files/wrapper | 15 | ||||
-rw-r--r-- | editors/staroffice70/files/wrapper | 15 |
2 files changed, 30 insertions, 0 deletions
diff --git a/editors/staroffice60/files/wrapper b/editors/staroffice60/files/wrapper new file mode 100644 index 000000000000..f0f7d811123d --- /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 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 |