fad663194f
provided by openoffice.org. Release notes available under: http://development.openoffice.org/releases/3.0.1.html http://development.openoffice.org/releases/3.0.0.html
18 lines
536 B
Text
18 lines
536 B
Text
# $NetBSD: INSTALL,v 1.1.1.1 2009/01/31 22:05:53 bad Exp $
|
|
#
|
|
# This file contains the contents of the OOo rpm pre-install, post-install
|
|
# scripts.
|
|
|
|
PRODUCTINSTALLLOCATION=${PKG_PREFIX}/openoffice.org@VER@
|
|
|
|
case ${STAGE} in
|
|
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
|
|
;;
|
|
esac
|