diff options
author | perky <perky@FreeBSD.org> | 2003-10-19 09:42:11 +0000 |
---|---|---|
committer | perky <perky@FreeBSD.org> | 2003-10-19 09:42:11 +0000 |
commit | 7617504b350411a8156aa4ca5bf9866906d13686 (patch) | |
tree | b9f8d9753206240ce93e982024db5aa3816e1510 /databases | |
parent | ed94c22d024b7f33c380404d165b0ffbef988b5f (diff) | |
download | FreeBSD-ports-7617504b350411a8156aa4ca5bf9866906d13686.zip FreeBSD-ports-7617504b350411a8156aa4ca5bf9866906d13686.tar.gz |
Utilize new USE_PYTHON instead of pkg-req script.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/zodb3/Makefile | 7 | ||||
-rw-r--r-- | databases/zodb3/pkg-req | 17 |
2 files changed, 1 insertions, 23 deletions
diff --git a/databases/zodb3/Makefile b/databases/zodb3/Makefile index 3c89b4c..3893d97 100644 --- a/databases/zodb3/Makefile +++ b/databases/zodb3/Makefile @@ -16,12 +16,7 @@ MAINTAINER= perky@FreeBSD.org COMMENT= The Z - Object Database for python CONFLICTS= zodb-1.* -USE_PYTHON= yes +USE_PYTHON= 2.1+ USE_PYDISTUTILS= yes -post-install: - @ ${SH} ${PKGREQ} INSTALL - -eNU_CONFIGURE= yes - .include <bsd.port.mk> diff --git a/databases/zodb3/pkg-req b/databases/zodb3/pkg-req deleted file mode 100644 index d5d99df..0000000 --- a/databases/zodb3/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.1" and 1'` - if [ "x${PYTHON_GT}" = "x1" ]; then - exit 0 - else - echo "-----------------------------------------------------------" - echo "ZODB requires Python version 2.1 or greater -" - echo " please update your Python installation before proceeding." - echo "-----------------------------------------------------------" - exit 1 - fi -fi |