pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc Added databases/postgresql84
details: https://anonhg.NetBSD.org/pkgsrc/rev/687cd470c7b1
branches: trunk
changeset: 396622:687cd470c7b1
user: adam <adam%pkgsrc.org@localhost>
date: Wed Jul 29 06:33:03 2009 +0000
description:
Added databases/postgresql84
diffstat:
databases/Makefile | 9 ++++++++-
doc/CHANGES-2009 | 9 ++++++++-
doc/TODO | 3 +--
mk/pgsql.buildlink3.mk | 15 ++++++++++++---
4 files changed, 29 insertions(+), 7 deletions(-)
diffs (110 lines):
diff -r 6be2302df185 -r 687cd470c7b1 databases/Makefile
--- a/databases/Makefile Wed Jul 29 06:26:17 2009 +0000
+++ b/databases/Makefile Wed Jul 29 06:33:03 2009 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.302 2009/07/07 17:30:18 sno Exp $
+# $NetBSD: Makefile,v 1.303 2009/07/29 06:33:03 adam Exp $
#
COMMENT= Databases
@@ -212,6 +212,13 @@
SUBDIR+= postgresql83-plpython
SUBDIR+= postgresql83-pltcl
SUBDIR+= postgresql83-server
+SUBDIR+= postgresql84
+SUBDIR+= postgresql84-adminpack
+SUBDIR+= postgresql84-client
+SUBDIR+= postgresql84-plperl
+SUBDIR+= postgresql84-plpython
+SUBDIR+= postgresql84-pltcl
+SUBDIR+= postgresql84-server
SUBDIR+= pxtools
SUBDIR+= py-IndexedCatalog
SUBDIR+= py-PgSQL
diff -r 6be2302df185 -r 687cd470c7b1 doc/CHANGES-2009
--- a/doc/CHANGES-2009 Wed Jul 29 06:26:17 2009 +0000
+++ b/doc/CHANGES-2009 Wed Jul 29 06:33:03 2009 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES-2009,v 1.2873 2009/07/28 21:35:28 seb Exp $
+$NetBSD: CHANGES-2009,v 1.2874 2009/07/29 06:36:59 adam Exp $
Changes to the packages collection and infrastructure in 2009:
@@ -3815,3 +3815,10 @@
Updated textproc/db2latex to 0.8pre1nb6 [minskim 2009-07-28]
Updated www/wordpress to 2.8.2 [adrianp 2009-07-28]
Added devel/p5-MooseX-Meta-TypeConstraint-ForceCoercion version 0.01 [seb 2009-07-28]
+ Added databases/postgresql84 version 8.4.0 [adam 2009-07-29]
+ Added databases/postgresql84-client version 8.4.0 [adam 2009-07-29]
+ Added databases/postgresql84-server version 8.4.0 [adam 2009-07-29]
+ Added databases/postgresql84-adminpack version 8.4.0 [adam 2009-07-29]
+ Added databases/postgresql84-plperl version 8.4.0 [adam 2009-07-29]
+ Added databases/postgresql84-plpython version 8.4.0 [adam 2009-07-29]
+ Added databases/postgresql84-pltcl version 8.4.0 [adam 2009-07-29]
diff -r 6be2302df185 -r 687cd470c7b1 doc/TODO
--- a/doc/TODO Wed Jul 29 06:26:17 2009 +0000
+++ b/doc/TODO Wed Jul 29 06:33:03 2009 +0000
@@ -1,4 +1,4 @@
-$NetBSD: TODO,v 1.8296 2009/07/27 13:03:28 obache Exp $
+$NetBSD: TODO,v 1.8297 2009/07/29 06:36:59 adam Exp $
Suggested new packages
======================
@@ -1056,7 +1056,6 @@
o poppy-4.01
o posh-0.5.5
o postal-0.70
- o postgresql-8.4.0
o powermanga-0.90
o pptp-1.7.1 [pkg/38038]
o prelude-correlator-0.9.0beta6 [pkg/41763]
diff -r 6be2302df185 -r 687cd470c7b1 mk/pgsql.buildlink3.mk
--- a/mk/pgsql.buildlink3.mk Wed Jul 29 06:26:17 2009 +0000
+++ b/mk/pgsql.buildlink3.mk Wed Jul 29 06:33:03 2009 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: pgsql.buildlink3.mk,v 1.25 2008/03/13 17:38:48 joerg Exp $
+# $NetBSD: pgsql.buildlink3.mk,v 1.26 2009/07/29 06:33:03 adam Exp $
#
# User-settable variables:
#
@@ -26,7 +26,7 @@
.include "../../mk/bsd.prefs.mk"
PGSQL_VERSION_DEFAULT?= 82
-PGSQL_VERSIONS_ACCEPTED?= 83 82 81
+PGSQL_VERSIONS_ACCEPTED?= 84 83 82 81
# transform the list into individual variables
.for pv in ${PGSQL_VERSIONS_ACCEPTED}
@@ -41,6 +41,9 @@
# check what is installed
.if ${OPSYS} == "Darwin"
+.if exists(${LOCALBASE}/lib/libecpg.6.0.1.dylib)
+_PGSQL_VERSION_84_INSTALLED= yes
+.endif
.if exists(${LOCALBASE}/lib/libecpg.6.0.0.dylib)
_PGSQL_VERSION_83_INSTALLED= yes
.endif
@@ -60,6 +63,9 @@
_PGSQL_VERSION_73_INSTALLED=yes
.endif
.else
+.if exists(${LOCALBASE}/lib/libecpg.so.6.0.1)
+_PGSQL_VERSION_84_INSTALLED= yes
+.endif
.if exists(${LOCALBASE}/lib/libecpg.so.6.0.0)
_PGSQL_VERSION_83_INSTALLED= yes
.endif
@@ -117,7 +123,10 @@
#
# set variables for the version we decided to use:
#
-.if ${_PGSQL_VERSION} == "83"
+.if ${_PGSQL_VERSION} == "84"
+PGSQL_TYPE= postgresql84-client
+PGPKGSRCDIR= ../../databases/postgresql84-client
+.elif ${_PGSQL_VERSION} == "83"
PGSQL_TYPE= postgresql83-client
PGPKGSRCDIR= ../../databases/postgresql83-client
.elif ${_PGSQL_VERSION} == "82"
Home |
Main Index |
Thread Index |
Old Index