1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00
freebsd-ports/mail/py-turbomail/files/pkg-install.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
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