mirror of
https://git.freebsd.org/ports.git
synced 2025-07-12 14:59:13 -04:00
15 lines
324 B
Bash
15 lines
324 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD: /tmp/pcvs/ports/editors/openoffice-3-devel/files/Attic/openoffice.org-wrapper,v 1.2 2005-12-23 03:06:18 maho Exp $
|
|
|
|
oopath=%%PREFIX%%/%%INSTALLATION_BASEDIR%%/program/
|
|
program=`echo $0 | sed -e 's|.*-%%OOOTAG%%-||'`
|
|
|
|
case $program in
|
|
$0)
|
|
$oopath/soffice "$@"
|
|
;;
|
|
*)
|
|
$oopath/$program "$@"
|
|
;;
|
|
esac
|