freebsd-ports/mail/py-turbomail/files/pkg-deinstall.in
Nicola Vitale 7d3fe10b5a TurboMail is a TurboGears extension, meaning that it starts up and
shuts down alongside any TurboGears applications you write, in the
same way that visit tracking and identity do.

TurboMail uses built-in Python modules for SMTP communication and
MIME e-mail creation, but greatly simplifies these tasks by performing
the grunt-work for you. Additionally, TurboMail is multi-threaded,
allowing for single or batch enqueueing and background delivery of mail.

Author: Top Floor Computer Systems Ltd.
WWW:	http://trac.orianagroup.com/turbomail/
2007-02-17 14:15:41 +00:00

17 lines
227 B
Bash

#!/bin/sh
# $FreeBSD$
PKGNAME=$1
#
case $2 in
DEINSTALL)
%%EASY_INSTALL_CMD%% -q -m -S %%PYTHON_SITELIBDIR%% %%EGG_VER%%
;;
POST-DEINSTALL)
exit 0
;;
*)
echo "Unexpected Argument $2!!!"
exit 1
;;
esac
exit 0