summaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorfhajny <fhajny@pkgsrc.org>2016-11-23 13:39:28 +0000
committerfhajny <fhajny@pkgsrc.org>2016-11-23 13:39:28 +0000
commit3b501fd06cebdb4e696fbcba5f965e15b06f48f6 (patch)
treeb4589c19b503e9d2c0bce67ac5aef571b7dfce46 /databases
parent389fba0c613b178e1141589f96b13cbbe3117ddb (diff)
downloadpkgsrc-3b501fd06cebdb4e696fbcba5f965e15b06f48f6.tar.gz
Limit databases/postgresql-pgbench to PostgreSQL<9.5.
Diffstat (limited to 'databases')
-rw-r--r--databases/postgresql-pgbench/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/postgresql-pgbench/Makefile b/databases/postgresql-pgbench/Makefile
index 6629fef49f6..a43c7d34c5c 100644
--- a/databases/postgresql-pgbench/Makefile
+++ b/databases/postgresql-pgbench/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2016/10/09 21:41:57 wiz Exp $
+# $NetBSD: Makefile,v 1.5 2016/11/23 13:39:28 fhajny Exp $
PKGNAME= ${DISTNAME:C/-/${PGSQL_VERSION}-pgbench-/}
PKGREVISION= 1
@@ -8,8 +8,8 @@ BUILD_DIRS+= contrib/pgbench
.include "../../mk/pgsql.buildlink3.mk" # this one defines PGSQL_VERSION among others
-# This package should be removed when PGSQL_VERSION_DEFAULT is bumped
-.if !empty(PGSQL_VERSION:M95)
+# This package is only to be used with PostgreSQL<9.5
+.if empty(PGSQL_VERSION:M9[1234])
PKG_SKIP_REASON+= \
"pgbench is now shipped with postgresql${PGSQL_VERSION}-client"
.endif