summaryrefslogtreecommitdiff
path: root/misc/openoffice2-bin/INSTALL
diff options
context:
space:
mode:
authormrauch <mrauch@pkgsrc.org>2005-10-09 13:39:53 +0000
committermrauch <mrauch@pkgsrc.org>2005-10-09 13:39:53 +0000
commit73255c04214c80641491cc967fadace5b301923f (patch)
tree4688625ab33e2ff1ad342ab1c89ba2b58a5c7904 /misc/openoffice2-bin/INSTALL
parentcab31f738589abbb4937d01e446c730650c04347 (diff)
downloadpkgsrc-73255c04214c80641491cc967fadace5b301923f.tar.gz
OpenOffice.org is a multiplatform and multilingual office suite and an
open-source project. Compatible with all other major office suites, the product is free to download, use, and distribute. New features in version 2 include: * Open Standards XML File Format (OASIS OpenDocument) * New CustomShapes (compatible with Microsoft AutoShapes) * Enhanced PDF Export * New enhanced Database Frontend * Mail Merge Wizard * Support for Nested Tables * Digital Signatures Support * XForms Support * WordPerfect Filters A complete list is available at http://marketing.openoffice.org/2.0/featureguide.html. This package was submitted by Geert Hendrickx to tech-pkg, based on an earlier version posted there by myself.
Diffstat (limited to 'misc/openoffice2-bin/INSTALL')
-rw-r--r--misc/openoffice2-bin/INSTALL55
1 files changed, 55 insertions, 0 deletions
diff --git a/misc/openoffice2-bin/INSTALL b/misc/openoffice2-bin/INSTALL
new file mode 100644
index 00000000000..a591f12dd6f
--- /dev/null
+++ b/misc/openoffice2-bin/INSTALL
@@ -0,0 +1,55 @@
+# $NetBSD: INSTALL,v 1.1.1.1 2005/10/09 13:39:53 mrauch Exp $
+
+# This file contains the contents of the OOo rpm
+# pre-install, post-install, pre-uninstall and post-uninstall scripts
+
+PRODUCTINSTALLLOCATION=${PKG_PREFIX}/openoffice.org@VER@
+
+case ${STAGE} in
+PRE-INSTALL)
+ # nothing to do
+ ;;
+
+POST-INSTALL)
+ if [ ! -f $PRODUCTINSTALLLOCATION/program/libfreetype.so.6 ]
+ then
+ if [ -f $PRODUCTINSTALLLOCATION/program/filter/libfreetype.so.6 ]
+ then
+ ${LN} -s $PRODUCTINSTALLLOCATION/program/filter/libfreetype.so.6 $PRODUCTINSTALLLOCATION/program/libfreetype.so.6 >/dev/null 2>&1
+ fi
+ fi
+
+ if [ -d $PRODUCTINSTALLLOCATION/program/python-core-2.3.4 ]
+ then
+ ${LN} -s $PRODUCTINSTALLLOCATION/program/python-core-2.3.4 $PRODUCTINSTALLLOCATION/program/python-core >/dev/null 2>&1
+ fi
+
+ if [ -f $PRODUCTINSTALLLOCATION/program/python.sh ]
+ then
+ ${LN} -s $PRODUCTINSTALLLOCATION/program/python.sh $PRODUCTINSTALLLOCATION/program/python >/dev/null 2>&1
+ fi
+
+ if [ -f $PRODUCTINSTALLLOCATION/program/python-core-2.3.4/bin/python ]
+ then
+ chmod +x $PRODUCTINSTALLLOCATION/program/python-core-2.3.4/bin/python
+ fi
+ ;;
+
+DEINSTALL)
+ if [ -h $PRODUCTINSTALLLOCATION/program/libfreetype.so.6 ]
+ then
+ ${RM} $PRODUCTINSTALLLOCATION/program/libfreetype.so.6 >/dev/null 2>&1
+ fi
+
+ if [ -h $PRODUCTINSTALLLOCATION/program/python-core ]
+ then
+ ${RM} $PRODUCTINSTALLLOCATION/program/python-core >/dev/null 2>&1
+ fi
+
+ if [ -h $PRODUCTINSTALLLOCATION/program/python ]
+ then
+ ${RM} $PRODUCTINSTALLLOCATION/program/python >/dev/null 2>&1
+ fi
+ ;;
+
+esac