fd9ab87d45
ooo-build and openoffice.org-2.0 can be different.
15 lines
322 B
Bash
15 lines
322 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD: /tmp/pcvs/ports/editors/openoffice-3/files/Attic/openoffice.org-wrapper,v 1.3 2006-04-20 21:56:12 maho Exp $
|
|
|
|
oopath=%%PREFIX%%/%%INSTALLATION_BASEDIR%%/program/
|
|
program=`echo $0 | sed -e 's|.*-%%OOOVERSION%%-||'`
|
|
|
|
case $program in
|
|
$0)
|
|
$oopath/soffice "$@"
|
|
;;
|
|
*)
|
|
$oopath/$program "$@"
|
|
;;
|
|
esac
|