summaryrefslogtreecommitdiff
path: root/biology/py-biopython/pkg-req
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2004-02-09 21:40:47 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2004-02-09 21:40:47 +0000
commit7da5c3b0167499db3b7e613571cacfbde8241032 (patch)
treedccf4c44ce1fea15be68afdba5990a0818f29e82 /biology/py-biopython/pkg-req
parentUpdate to 1.29 (diff)
Upgrade to 1.23.
Approved by: maintainer timeout
Diffstat (limited to '')
-rw-r--r--biology/py-biopython/pkg-req17
1 files changed, 0 insertions, 17 deletions
diff --git a/biology/py-biopython/pkg-req b/biology/py-biopython/pkg-req
deleted file mode 100644
index 1a2bc48824e3..000000000000
--- a/biology/py-biopython/pkg-req
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/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" and 1'`
- if [ "x${PYTHON_GT}" = "x1" ]; then
- exit 0
- else
- echo "-----------------------------------------------------------"
- echo "Biopython requires Python version 2.0 or greater - "
- echo " please update your Python installation before proceeding."
- echo "-----------------------------------------------------------"
- exit 1
- fi
-fi