freebsd-ports/mail/mailman/pkg-req
Norikatsu Shigemura c00c5993e5 o Update to 2.1.2.
o Take MAINTAINERship to submitter.

PR:		ports/55160
Submitted by:	Vivek Khera <khera@kcilink.com>
Approved by:	maintainer timeout (a long time)
2003-08-01 19:30:16 +00:00

17 lines
589 B
Bash

#!/bin/sh
PATH=$PATH:/usr/local/bin
if [ "x$1" = "xINSTALL" -o "x$2" = "xINSTALL" ]; then
PYTHON_GT=`python -c 'import string, sys; \
print string.split(sys.version)[0] >= "2.1.3"'`
if [ "x${PYTHON_GT}" = "x1" -o "x${PYTHON_GT}" = "xTrue" ]; then
exit 0
else
echo "-----------------------------------------------------------"
echo "Mailman requires Python version 2.1.3 or greater -"
echo " please update your Python installation before proceeding."
echo "-----------------------------------------------------------"
exit 1
fi
fi