Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
Pgsql_perl5 is an interface between Larry Wall's language perl
version 5 and the database PostgreSQL (previously Postgres95). This
has been done by using the Perl5 application programming interface
for C extensions which calls the Postgres programmer's interface
LIBPQ. Pgsql_perl5 tries to implement the LIBPQ- interface as close
as possible.
You have the choice between two different interfaces: the old
C-style like interface and a new one, using a more Perl-ish like
style. The old style has the benefit, that existing Libpq
applications can easily be ported to perl. The new style uses class
packages and might be more familiar for C++- programmers.
You may distribute this module under the terms of either the GNU
General Public License or the Artistic License, as specified in the
Perl README file.

View File

@@ -0,0 +1,23 @@
# $NetBSD: Makefile,v 1.31 2013/05/31 12:39:55 wiz Exp $
DISTNAME= pgsql_perl5-1.9.0
PKGNAME= p5-postgresql-1.9.0
PKGREVISION= 14
SVR4_PKGNAME= p5pgs
CATEGORIES= databases devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Pg/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://gborg.postgresql.org/project/pgperl/projdisplay.php
COMMENT= Perl interface class for PostgreSQL
PERL5_PACKLIST= auto/Pg/.packlist
# Until the source catches up to the current Perl API, we need PERL_POLLUTE
# to look like an older perl.
MAKE_PARAMS= DEFINE="-DPERL_POLLUTE=1"
MAKE_ENV+= POSTGRES_HOME=${PGSQL_PREFIX:Q}
.include "../../lang/perl5/module.mk"
.include "../../mk/pgsql.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.2 2005/02/23 16:33:08 agc Exp $
SHA1 (pgsql_perl5-1.9.0.tar.gz) = 897edd8bbc952796685ee6a0528f9fe13d15550a
RMD160 (pgsql_perl5-1.9.0.tar.gz) = 79adcaedbf873a59f372edf7a59dd7c33351a26e
Size (pgsql_perl5-1.9.0.tar.gz) = 16860 bytes
SHA1 (patch-aa) = 0e87750d181e72757f5ba4e2f06702481a7dfbd0

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-aa,v 1.1.1.1 2001/05/14 15:13:41 jlam Exp $
--- Makefile.PL.orig Tue Nov 28 21:30:41 2000
+++ Makefile.PL
@@ -14,7 +14,7 @@
if ((!$ENV{POSTGRES_INCLUDE} or !$ENV{POSTGRES_LIB}) and !$ENV{POSTGRES_HOME}) {
die "please set environment variables POSTGRES_INCLUDE and POSTGRES_LIB !\n";
} elsif ((!$ENV{POSTGRES_INCLUDE} or !$ENV{POSTGRES_LIB}) and $ENV{POSTGRES_HOME}) {
- $POSTGRES_INCLUDE = "$ENV{POSTGRES_HOME}/include";
+ $POSTGRES_INCLUDE = "$ENV{POSTGRES_HOME}/include/pgsql";
$POSTGRES_LIB = "$ENV{POSTGRES_HOME}/lib";
} else {
$POSTGRES_INCLUDE = "$ENV{POSTGRES_INCLUDE}";