b8d76621c3
pkgsrc change: Add GEM_EXTSDIR support. == v0.17.1 [2013-12-18] Michael Granger <ged@FaerieMUD.org> Bugfixes: - Fix compatibility with signal handlers defined in Ruby. This reverts cancelation of queries running on top of the blocking libpq API (like Connection#exec) in case of signals. As an alternative the #async_exec can be used, which is reverted to use the non-blocking API, again. - Wrap PQcancel to be called without GVL. It internally waits for the canceling connection. Documentation fixes: - Fix documentation for PG::Connection::conndefaults.
18 lines
564 B
Makefile
18 lines
564 B
Makefile
# $NetBSD: Makefile,v 1.19 2014/03/13 18:23:21 taca Exp $
|
|
|
|
DISTNAME= pg-0.17.1
|
|
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:C/postgres/&ql/}
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://bitbucket.org/ged/ruby-pg/
|
|
COMMENT= Ruby extension for PostgreSQL
|
|
LICENSE= 2-clause-bsd OR ruby-license
|
|
|
|
RUBY_RDOC_REQD= 2.5.8
|
|
CONFIGURE_ARGS= --with-pgsql-include-dir=${PGSQL_PREFIX}/include/postgresql \
|
|
--with-pgsql-lib-dir=${PGSQL_PREFIX}/lib
|
|
|
|
.include "../../lang/ruby/gem.mk"
|
|
.include "../../mk/pgsql.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|