summaryrefslogtreecommitdiff
path: root/mail/mailman/pkg-req
blob: cffca7cab3ffd2d52ce40a6b41daafd9cf9869e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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.1.3"'`
  if [ "x${PYTHON_GT}" = "x1" -o "x${PYTHON_GT}" = "xTrue" ]; then
    exit 0
  else
    echo "-----------------------------------------------------------"
    echo "Mailman requires Python version 2.1.3 or greater -"
    echo "  please update your Python installation before proceeding."
    echo "-----------------------------------------------------------"
    exit 1
  fi
fi