freebsd-ports/sysutils/lfm/pkg-req
Johann Visagie 3a4c6e21b5 - Update to version 0.7
- Make PREFIX-compliant
- Added a PKGREQ script to check for Python version >= 2.0
2002-01-17 12:21:08 +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 "lfm requires Python version 2.0 or greater -"
echo " please update your Python installation before proceeding."
echo "-----------------------------------------------------------"
exit 1
fi
fi