242d41a6f0
Special thanks to: Pavel Janik, and Kris Kennaway They contributed for in many ways. Additional contributors. thank you very much for all: daichi, Eric Bachard, kan, lofi, Martin Hollmichel, nork, obrien, Sander Vesik, sem, and Stefan Taxhet
15 lines
327 B
Bash
15 lines
327 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD: /tmp/pcvs/ports/editors/openoffice-2.0-devel/files/Attic/openoffice-wrapper,v 1.14 2005-01-10 12:28:19 maho Exp $
|
|
|
|
oopath=%%PREFIX%%/%%INSTALLATION_BASEDIR%%/program/
|
|
program=`echo $0 | sed -e 's|.*-%%RELEASE_NR%%-||'`
|
|
|
|
case $program in
|
|
$0)
|
|
$oopath/soffice "$@"
|
|
;;
|
|
*)
|
|
$oopath/$program "$@"
|
|
;;
|
|
esac
|