freebsd-ports/editors/openoffice-1.1/files/openoffice-wrapper
Martin Blapp 5f6e7f6949 First step to make this port working. Configure works and all patches
apply now. There are still some compile errors to fix.

As you may see the patchnames are very long, but that makes
maintaining patches a lot easier.
2002-10-18 22:41:42 +00:00

15 lines
307 B
Bash

#!/bin/sh
#
# $FreeBSD: /tmp/pcvs/ports/editors/openoffice-1.1/files/Attic/openoffice-wrapper,v 1.1 2002-10-18 22:41:29 mbr Exp $
oopath=%%PREFIX%%/OpenOffice.org1.0/program/
program=`echo $0 | sed -e 's|.*-||'`
case $program in
$0)
exec $oopath/soffice "$@"
;;
*)
exec $oopath/$program "$@"
;;
esac