c00c5993e5
o Take MAINTAINERship to submitter. PR: ports/55160 Submitted by: Vivek Khera <khera@kcilink.com> Approved by: maintainer timeout (a long time)
18 lines
589 B
Bash
18 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
|