mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
7d3fe10b5a
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/
17 lines
216 B
Bash
17 lines
216 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
PKGNAME=$1
|
|
#
|
|
case $2 in
|
|
POST-INSTALL)
|
|
%%EASY_INSTALL_CMD%% -q -S %%PYTHON_SITELIBDIR%% %%EGG_VER%%
|
|
;;
|
|
PRE-INSTALL)
|
|
;;
|
|
*)
|
|
echo "Unexpected Argument $2!!!"
|
|
exit 1
|
|
;;
|
|
esac
|
|
exit 0
|