62af42c598
Version 3.7.0 Released September 24, 2017 (git tag 3.7.0) - If no placeholders, use PQexec instead of PQexecParams [Greg Sabino Mullane] - Fix running tests with non-UTF8 server_encoding [Dagfinn Ilmari Mannsåker] (Github issue #26) - Fix crash with missing client_encoding [David Christensen, reported by Marko Tiikkaja] (Github issue #29) - Fix crash with missing server_version [David Christensen] - Fix leak in ->state methods [Dagfinn Ilmari Mannsåker] (Github issue #30) - Add $sth->{pg_async_status} to determine async status of a statement handle. Values can be 0 (no async), 1 (async), or -1 (cancelled) [Greg Sabino Mullane, as requested by Dmytro Zagashev (ZDM)] (CPAN ticket #116172)
27 lines
887 B
Makefile
27 lines
887 B
Makefile
# $NetBSD: Makefile,v 1.85 2017/09/27 19:16:06 wiz Exp $
|
|
|
|
DISTNAME= DBD-Pg-3.7.0
|
|
PKGNAME= p5-${DISTNAME:C/-Pg-/-postgresql-/}
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBD/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/DBD-Pg/
|
|
COMMENT= Perl DBI/DBD driver for PostgreSQL databases
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
#DEPENDS+= {p5-version-[0-9]*,perl>=5.10.0}:../../devel/p5-version
|
|
DEPENDS+= p5-DBI>=1.614:../../databases/p5-DBI
|
|
|
|
PERL5_PACKLIST= auto/DBD/Pg/.packlist
|
|
|
|
POSTGRES_INCLUDE= ${PGSQL_PREFIX}/include/postgresql
|
|
POSTGRES_LIB= ${PGSQL_PREFIX}/lib
|
|
MAKE_ENV+= POSTGRES_INCLUDE=${POSTGRES_INCLUDE:Q}
|
|
MAKE_ENV+= POSTGRES_LIB=${POSTGRES_LIB:Q}
|
|
REPLACE_PERL+= testme.tmp.pl
|
|
|
|
.include "../../databases/p5-DBI/buildlink3.mk"
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/pgsql.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|