pkgsrc/www/typolight/DEINSTALL
taca 8ee6f7948d Fix DEINSTALL script not to display such useless messages.
rmdir: /usr/pkg/share/httpd/typolight/system/config: Directory not empty
rmdir: /usr/pkg/share/httpd/typolight/system: Directory not empty

Bump PKGREVISION.
2008-12-15 03:05:11 +00:00

17 lines
428 B
Text

# $NetBSD: DEINSTALL,v 1.2 2008/12/15 03:05:11 taca Exp $
TL_WEBDIR="@PREFIX@/@TL_WEBDIR@"
TL_DIRS="templates system/drivers system/libraries system/logs \
system/modules system/themes system/config system"
case ${STAGE} in
DEINSTALL)
${FIND} ${TL_WEBDIR}/system/html -type f ! -name index.html \
-exec ${RM} -f {} \;
;;
POST-DEINSTALL)
for d in ${TL_DIRS} ${TL_WEBDIR}; do
${RMDIR} $d >/dev/null 2>&1
done
;;
esac