Import of pkgsrc-2014Q1

This commit is contained in:
2014-04-17 16:38:45 +02:00
parent 785076ae39
commit 9a8c06dafb
19365 changed files with 828089 additions and 278039 deletions

View File

@@ -1,7 +1,6 @@
# $NetBSD: Makefile,v 1.5 2013/05/31 12:39:55 wiz Exp $
# $NetBSD: Makefile,v 1.8 2014/02/23 11:25:51 adam Exp $
PKGNAME= ${DISTNAME:C/-/90-/}
PKGREVISION= 1
COMMENT= Robust, next generation, object-relational DBMS
DEPENDS+= postgresql90-client>=${PKGVERSION_NOREV}:../../databases/postgresql90-client

View File

@@ -1,4 +1,4 @@
# $NetBSD: Makefile.common,v 1.24 2013/04/04 21:08:33 adam Exp $
# $NetBSD: Makefile.common,v 1.30 2014/03/27 20:57:54 adam Exp $
#
# used by databases/postgresql90-adminpack/Makefile
# used by databases/postgresql90-client/Makefile
@@ -21,7 +21,7 @@
# <lang>-postgresql client-side interface to PostgreSQL
# postgresql-<lang> server-side module for PostgreSQL backend
DISTNAME= postgresql-9.0.13
DISTNAME= postgresql-9.0.17
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
EXTRACT_SUFX= .tar.bz2
@@ -44,6 +44,7 @@ DISTINFO_FILE?= ${.CURDIR}/../../databases/postgresql90/distinfo
COMMON_FILESDIR?= ${.CURDIR}/../../databases/postgresql90/files
PATCHDIR?= ${.CURDIR}/../../databases/postgresql90/patches
USE_GCC_RUNTIME= yes
USE_PKGLOCALEDIR= yes
USE_TOOLS+= bison gmake lex msgfmt
PKG_SYSCONFSUBDIR= postgresql
@@ -52,6 +53,7 @@ PKG_SYSCONFSUBDIR= postgresql
PG_TEMPLATE.SunOS= solaris
PG_TEMPLATE.IRIX= irix5
PG_TEMPLATE.MirBSD= openbsd
.if !defined(PG_TEMPLATE.${OPSYS})
PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS}
.endif
@@ -75,6 +77,11 @@ CONFIGURE_ARGS+= --without-readline
CONFIGURE_ARGS+= --without-tcl
CONFIGURE_ARGS+= --without-zlib
# configure fails on OpenBSD and MirBSD if thread safety is enabled.
.if ${OPSYS} == "OpenBSD" || ${OPSYS} == "MirBSD"
CONFIGURE_ARGS+= --disable-thread-safety
.endif
# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block.
# This also limits the size of a tuple. The valid values are powers
# of 2 up to 32768, and the default size is 8196. Please don't change

View File

@@ -1,8 +1,8 @@
$NetBSD: distinfo,v 1.17 2013/04/04 21:08:33 adam Exp $
$NetBSD: distinfo,v 1.21 2014/03/27 20:57:54 adam Exp $
SHA1 (postgresql-9.0.13.tar.bz2) = d4812cba43c1a76b66f43687df78c86996a23620
RMD160 (postgresql-9.0.13.tar.bz2) = 1b7e37cb4ecb1e512f5ca3c0350c9e908d03a01d
Size (postgresql-9.0.13.tar.bz2) = 15139873 bytes
SHA1 (postgresql-9.0.17.tar.bz2) = 585198b90b2e86b1e2e8e33ff28d7161af20156d
RMD160 (postgresql-9.0.17.tar.bz2) = 36d1f5e7d4cf9f5703f01b35c507814fd73384a3
Size (postgresql-9.0.17.tar.bz2) = 14961682 bytes
SHA1 (patch-aa) = c7e5aaff1c47d2e33df7692a412ef984c77ffcc0
SHA1 (patch-ab) = 6adfc53e325abe69582f1c7971f56144c697e9c1
SHA1 (patch-ac) = 76ddd3015d93b19cdd6000eaffc4f53cbd4965b5
@@ -15,3 +15,4 @@ SHA1 (patch-ao) = 4d7c40d107d4c13c63ef2908d9a02be319863657
SHA1 (patch-src_Makefile.shlib) = 72d6db917b7d6ba1dbf8037e03f83a7ce7c4d6c9
SHA1 (patch-src_makefiles_Makefile.solaris) = 0168f5bc105ffc89d5db40907a08966d8465f5a0
SHA1 (patch-src_pl_plperl_plperl.h) = 8e2d954642cb68dc6c6fd08debd058d053566826
SHA1 (patch-src_pl_plpython_Makefile) = d70e0cf5e20479851df3ededa50776fd04846d49

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-src_pl_plpython_Makefile,v 1.1 2013/12/10 22:32:56 adam Exp $
Don't try to use Python framework.
--- src/pl/plpython/Makefile.orig 2013-12-10 21:48:07.000000000 +0000
+++ src/pl/plpython/Makefile
@@ -24,8 +24,6 @@ endif
# Darwin (OS X) has its own ideas about how to do this.
ifeq ($(PORTNAME), darwin)
shared_libpython = yes
-override python_libspec = -framework Python
-override python_additional_libs =
endif
# If we don't have a shared library and the platform doesn't allow it