summaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorHye-Shik Chang <perky@FreeBSD.org>2003-10-19 09:42:11 +0000
committerHye-Shik Chang <perky@FreeBSD.org>2003-10-19 09:42:11 +0000
commit02fe87707a85d4c22af8a52b5e768cef93ab8ee9 (patch)
tree687a347e19388f180a4ce67cca34ac92b8ef848d /databases
parentThis ports require Python version 2.1 at least. (diff)
Utilize new USE_PYTHON instead of pkg-req script.
Notes
Notes: svn path=/head/; revision=91649
Diffstat (limited to 'databases')
-rw-r--r--databases/zodb3/Makefile7
-rw-r--r--databases/zodb3/pkg-req17
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