freebsd-ports/editors/openoffice.org-3-RC/files/openoffice.org-wrapper
Maho Nakata 1db390d257 * Update to OOE680_m5 (2.1rc1).
http://www.openoffice.org/servlets/ReadMsg?list=releases&msgNo=10218
http://www.openoffice.org/servlets/ReadMsg?list=cws-announce&msgNo=3805
* add some localized languages.
* Remove RELEASE_NR. It is not used anymore [1].
* Desktop Icons and menus are not installed as default as pkg-plist
 is incomplete [2].
* Remove openoffice.org symlink.
* some cosmetic fixes.

Submitted by:	oliver[1], kris[2].
2006-11-25 03:19:22 +00:00

15 lines
325 B
Bash

#!/bin/sh
#
# $FreeBSD: /tmp/pcvs/ports/editors/openoffice.org-3-RC/files/Attic/openoffice.org-wrapper,v 1.4 2006-11-25 03:19:22 maho Exp $
oopath=%%PREFIX%%/%%INSTALLATION_BASEDIR%%/program/
program=`echo $0 | sed -e 's|.*-%%OOOTAG%%-||'`
case $program in
$0)
$oopath/soffice "$@"
;;
*)
$oopath/$program "$@"
;;
esac