Sat Mar 5 16:06:32 2016 UTC ()
prevent building the package with 9.5; pgbench now shipped with -client


(tnn)
diff -r1.2 -r1.3 pkgsrc/databases/postgresql-pgbench/Makefile

cvs diff -r1.2 -r1.3 pkgsrc/databases/postgresql-pgbench/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql-pgbench/Attic/Makefile 2012/10/02 21:25:41 1.2
+++ pkgsrc/databases/postgresql-pgbench/Attic/Makefile 2016/03/05 16:06:32 1.3
@@ -1,10 +1,17 @@ @@ -1,10 +1,17 @@
1# $NetBSD: Makefile,v 1.2 2012/10/02 21:25:41 asau Exp $ 1# $NetBSD: Makefile,v 1.3 2016/03/05 16:06:32 tnn Exp $
2 2
3PKGNAME= ${DISTNAME:C/-/${PGSQL_VERSION}-pgbench-/} 3PKGNAME= ${DISTNAME:C/-/${PGSQL_VERSION}-pgbench-/}
4COMMENT= PostgreSQL benchmarking tools 4COMMENT= PostgreSQL benchmarking tools
5 5
6BUILD_DIRS+= contrib/pgbench 6BUILD_DIRS+= contrib/pgbench
7 7
8.include "../../mk/pgsql.buildlink3.mk" # this one defines PGSQL_VERSION among others 8.include "../../mk/pgsql.buildlink3.mk" # this one defines PGSQL_VERSION among others
 9
 10# This package should be removed when PGSQL_VERSION_DEFAULT is bumped
 11.if !empty(PGSQL_VERSION:M95)
 12PKG_SKIP_REASON+= \
 13 "pgbench is now shipped with postgresql${PGSQL_VERSION}-client"
 14.endif
 15
9.include "../../databases/postgresql${PGSQL_VERSION}/Makefile.common" 16.include "../../databases/postgresql${PGSQL_VERSION}/Makefile.common"
10.include "../../mk/bsd.pkg.mk" 17.include "../../mk/bsd.pkg.mk"