freebsd-ports/www/piwigo/files/pkg-deinstall.in
Beech Rintoul 1d4a3fae07 Update of piwigo (the software formerly known as PHPWebGallery) to version 2.1.3.
Add entry to MOVED
Hook into build and unhook phpwebgallery
PR:		ports/150863
Submitted by:	Goran Lowkrantz <glz@hidden-powers.com> (maintainer)
Approved by:	itetcu
2010-11-30 20:35:48 +00:00

20 lines
412 B
Bash

#! /bin/sh
PATH=/bin:/usr/sbin:/usr/bin:/usr/sbin
WEBAPP_DIR="%%WWWDIR%%"
ECHO_CMD="echo"
post-deinstall() {
${ECHO_CMD} "WARNING: If you intend *NOT* use this package anymore,"
${ECHO_CMD} " you may need to remove the following directory manually:"
${ECHO_CMD} " ${WEBAPP_DIR}"
${ECHO_CMD} " and delete the application database."
${ECHO_CMD}
}
case $2 in
POST-DEINSTALL)
post-deinstall
;;
esac