blob: f28fe9f72689ab8223ab814699417107a756c9d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $NetBSD: DEINSTALL,v 1.1 2006/06/15 20:40:16 jlam Exp $
#
# This file contains the contents of the OOo rpm pre-uninstall,
# post-uninstall scripts.
PRODUCTINSTALLLOCATION=${PKG_PREFIX}/openoffice.org@VER@
case ${STAGE} in
DEINSTALL)
if [ -h $PRODUCTINSTALLLOCATION/program/libfreetype.so.6 ]
then
${RM} $PRODUCTINSTALLLOCATION/program/libfreetype.so.6 >/dev/null 2>&1
fi
;;
esac
|