freebsd-ports/textproc/py-xml/pkg-req
Johann Visagie e06ac271e0 - Update to version 0.8.1
- Add a $PKGREQ to enforce dependency on version 2.0+ of Python
2002-09-18 12:25:25 +00:00

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