freebsd-ports/net/py-zsi-devel/pkg-req
Johann Visagie d2fc60ddc2 Add py-zsi 1.1, a pure Python module that provides an
implementation of SOAP 1.1.
2001-09-17 09:06:52 +00:00

17 lines
552 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 "ZSI requires Python version 2.0 or greater -"
echo " please update your Python installation before proceeding."
echo "-----------------------------------------------------------"
exit 1
fi
fi