freebsd-ports/devel/py-twisted/pkg-req
Johann Visagie 12db88ff8e - Update to version 0.99.2
- ${PERL} -> ${REINPLACE_CMD}
- Add a WITHOUT_TESTS knob, which has the added side-effect of installing
  Twisted with minimal dependencies - ideal for productions servers
2002-10-07 07:45:17 +00:00

17 lines
556 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"'`
if [ "x${PYTHON_GT}" = "x1" ]; then
exit 0
else
echo "-----------------------------------------------------------"
echo "Twisted requires Python version 2.1 or greater -"
echo " please update your Python installation before proceeding."
echo "-----------------------------------------------------------"
exit 1
fi
fi