diff options
Diffstat (limited to 'mail/tmda/pkg-req')
-rw-r--r-- | mail/tmda/pkg-req | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mail/tmda/pkg-req b/mail/tmda/pkg-req new file mode 100644 index 000000000000..f2b70eeb6d6e --- /dev/null +++ b/mail/tmda/pkg-req @@ -0,0 +1,17 @@ +#!/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 " TMDA requires Python version 2.0 or greater -" + echo " please update your Python installation before proceeding." + echo "-----------------------------------------------------------" + exit 1 + fi +fi |