aboutsummaryrefslogtreecommitdiffstats
path: root/editors
diff options
context:
space:
mode:
authormbr <mbr@FreeBSD.org>2003-02-05 22:11:27 +0800
committermbr <mbr@FreeBSD.org>2003-02-05 22:11:27 +0800
commitc48a32a5b74818667491577eca1d4ab56993a1e9 (patch)
treed33067e5ae44823ae86e103955600282b61c9a98 /editors
parent24461497535a289b96a086be2dcfaeb4f1c2ecf7 (diff)
downloadfreebsd-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/wrapper15
-rw-r--r--editors/staroffice70/files/wrapper15
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