freebsd-ports/textproc/py-martel/pkg-req
Johann Visagie e7c91cf908 - Do checking for Python version ov pkg-req. This is somewhat experimental
and may require further tweaking.
- Use DOCSDIR.
- Now install examples optionally depending on NOPORTDOCS.
- Miscellaneous minor fixes and cleanups in Makefile.
- Update my email address in pkg-descr.
2001-08-07 14:14:21 +00:00

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