freebsd-ports/www/phpwebgallery/files/pkg-deinstall.in
Beech Rintoul 61c6cd16c3 PhpWebGallery is a free and open source software used
to present photo collections on your web site.

WWW: http://www.phpwebgallery.net/

PR:		ports/126756
Submitted by:	Goran Lowkrantz <glz at hidden-powers.com>
2008-08-27 06:33:10 +00:00

20 lines
404 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 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