pkgsrc/mk/pkginstall/deinstall-pre
2006-05-21 23:50:15 +00:00

15 lines
431 B
Text

# $NetBSD: deinstall-pre,v 1.1 2006/05/21 23:50:15 jlam Exp $
# Ensure that the VIEW-DEINSTALL action is called for overwrite packages.
# This is here to ensure that it's the first DEINSTALL action (before
# any DEINSTALL_TEMPLATE DEINSTALL actions).
#
case ${STAGE} in
DEINSTALL)
if [ "${PKG_INSTALLATION_TYPE}" = "overwrite" ]; then
${SETENV} PKG_PREFIX="${PKG_PREFIX}" \
$0 ${PKGNAME} VIEW-DEINSTALL
fi
;;
esac