aboutsummaryrefslogtreecommitdiffstats
path: root/editors/openoffice.org-3
diff options
context:
space:
mode:
authormbr <mbr@FreeBSD.org>2003-09-26 06:28:01 +0800
committermbr <mbr@FreeBSD.org>2003-09-26 06:28:01 +0800
commitcd1d97e2e9d409281251a8fc29081173cc6bbfad (patch)
tree13a3f72c3c62231596e3e738b47293e3390cb8f8 /editors/openoffice.org-3
parentd83d0395467310b54c91b8e5365b0150083b9cf8 (diff)
downloadfreebsd-ports-gnome-cd1d97e2e9d409281251a8fc29081173cc6bbfad.tar.gz
freebsd-ports-gnome-cd1d97e2e9d409281251a8fc29081173cc6bbfad.tar.zst
freebsd-ports-gnome-cd1d97e2e9d409281251a8fc29081173cc6bbfad.zip
Directly get OOHOME from .sversionrc. Add several checks for
the various installation steps.
Diffstat (limited to 'editors/openoffice.org-3')
-rw-r--r--editors/openoffice.org-3/files/freebsd-local.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/editors/openoffice.org-3/files/freebsd-local.sh b/editors/openoffice.org-3/files/freebsd-local.sh
index b2a0d769ee14..aef69e5cff61 100644
--- a/editors/openoffice.org-3/files/freebsd-local.sh
+++ b/editors/openoffice.org-3/files/freebsd-local.sh
@@ -2,7 +2,10 @@
#
# $FreeBSD $
-OOHOME="$HOME/OpenOffice.org%%FRELEASE_NR%%"
+if [ -e $HOME/.sversionrc ]; then
+ OOHOME=`grep %%FRELEASE_NR%% $HOME/.sversionrc \
+ | sed -e 's/.*file:\/\///'`
+fi
save_common_xcu() {
sed 's/^X//' > $OOHOME/tmp/Common.xcu << 'END-of-Common.xcu'
@@ -58,7 +61,7 @@ fi
#
# Create soffice.cfg if it does not exist.
#
-if [ -e $OOHOME/setup ]; then
+if [ ! -z $OOHOME ] && [ -e $OOHOME/setup ]; then
if [ ! -e $OOHOME/user/config/soffice.cfg ]; then
touch $OOHOME/user/config/soffice.cfg
fi
@@ -67,7 +70,7 @@ fi
#
# Detect installed mozilla
#
-if [ ! -e $OOHOME/user/registry/data/org/openoffice/Office/Common.xcu ]; then
+if [ ! -z $OOHOME ] && [ ! -e $OOHOME/user/registry/data/org/openoffice/Office/Common.xcu ]; then
mkdir -p $OOHOME/tmp;
save_common_xcu;
fi