#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.2 2004/04/15 03:45:03 kevlo Exp $
#
# De-installation setup of openwebmail

# exit on errors, use a sane path and install prefix
#
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/var/www}
CGI_DIR=/var/www/cgi-bin/twiki
WWWDOC_DIR=/var/www/htdocs/twiki/twiki

# Function: tell the user what they need to do to delete the port completely
#
do_notice()
{
    echo
    echo "+---------------"
    echo "| To completely deinstall the $1 package"
    echo "| you need to perform these steps as root:"
    echo "|"
    echo "|       rm -rf ${CGI_DIR}" 	  
    echo "|       rm -rf ${WWWDOC_DIR}"
    echo "|"
    echo "| Do not do this if you plan on re-installing"
    echo "| $1 at some future time."
    echo "+---------------"
    echo
}

# Verify proper execution
#
if [ $# -ne 2 ]; then
    echo "usage: $0 distname DEINSTALL" >&2
    exit 1
fi

# Verify/process the command
#
case $2 in
    DEINSTALL)
	if [ ${PKG_DELETE_EXTRA} != Yes -a -e ${WWWDOC_DIR} ]; then
	    do_notice "$1"
	fi
	;;
    *)
	echo "usage: $0 distname DEINSTALL" >&2
	exit 1
	;;
esac

exit 0
