pkgsrc/misc/openoffice2-bin/INSTALL
ghen 12f8cb92be Update to OpenOffice 2.0.1, the first bugfix release on the 2.0 branch.
This release fixes a lot of bugs, and also introduces some new featues.
For a complete list of changes, see
  http://development.openoffice.org/releases/2.0.1.html

Ok by mrauch, wiz.
2006-01-04 15:29:41 +00:00

30 lines
762 B
Text

# $NetBSD: INSTALL,v 1.2 2006/01/04 15:29:41 ghen 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
;;
DEINSTALL)
if [ -h $PRODUCTINSTALLLOCATION/program/libfreetype.so.6 ]
then
${RM} $PRODUCTINSTALLLOCATION/program/libfreetype.so.6 >/dev/null 2>&1
fi
;;
esac