diff options
author | Hye-Shik Chang <perky@FreeBSD.org> | 2003-10-19 09:42:11 +0000 |
---|---|---|
committer | Hye-Shik Chang <perky@FreeBSD.org> | 2003-10-19 09:42:11 +0000 |
commit | 02fe87707a85d4c22af8a52b5e768cef93ab8ee9 (patch) | |
tree | 687a347e19388f180a4ce67cca34ac92b8ef848d /databases/zodb3 | |
parent | 52a44ee0db7319903f1cc6b044b0123c71dd07fd (diff) | |
download | ports-02fe87707a85d4c22af8a52b5e768cef93ab8ee9.tar.gz ports-02fe87707a85d4c22af8a52b5e768cef93ab8ee9.zip |
Utilize new USE_PYTHON instead of pkg-req script.
Notes
Notes:
svn path=/head/; revision=91649
Diffstat (limited to 'databases/zodb3')
-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 3c89b4c91b31..3893d97c8201 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 d5d99df207bb..000000000000 --- 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 |