forked from Lainports/freebsd-ports
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>
20 lines
404 B
Bash
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
|