freebsd-ports/databases/zodb/pkg-req
Johann Visagie 59adb0f695 - Migrated port from the unofficial 3rd party standalone distribution of ZODB
to the newly merged official StandaloneZODB from Zope Corp.
2002-02-05 10:51:19 +00:00

18 lines
553 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 "ZODB requires Python version 2.1 or greater -"
echo " please update your Python installation before proceeding."
echo "-----------------------------------------------------------"
exit 1
fi
fi