summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradam <adam>2006-12-09 16:18:40 +0000
committeradam <adam>2006-12-09 16:18:40 +0000
commit98f7e44f927502d52186550a3d71d31f219b4629 (patch)
tree2c6c95a8a3e10020992040212daef93e435a56d1
parent43ba138637006ce6821eaa5da874e6d365557d58 (diff)
downloadpkgsrc-98f7e44f927502d52186550a3d71d31f219b4629.tar.gz
Added postgresql82 version 8.2.0
-rw-r--r--databases/Makefile9
-rw-r--r--doc/CHANGES-20069
-rw-r--r--doc/TODO3
-rw-r--r--mk/pgsql.buildlink3.mk12
4 files changed, 26 insertions, 7 deletions
diff --git a/databases/Makefile b/databases/Makefile
index 7395db72965..ad3196f64dc 100644
--- a/databases/Makefile
+++ b/databases/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.218 2006/12/01 20:16:09 joerg Exp $
+# $NetBSD: Makefile,v 1.219 2006/12/09 16:18:40 adam Exp $
#
COMMENT= Databases
@@ -140,6 +140,13 @@ SUBDIR+= postgresql81-plpython
SUBDIR+= postgresql81-pltcl
SUBDIR+= postgresql81-server
SUBDIR+= postgresql81-tsearch2
+SUBDIR+= postgresql82
+SUBDIR+= postgresql82-client
+SUBDIR+= postgresql82-plperl
+SUBDIR+= postgresql82-plpython
+SUBDIR+= postgresql82-pltcl
+SUBDIR+= postgresql82-server
+SUBDIR+= postgresql82-tsearch2
SUBDIR+= pxtools
SUBDIR+= py-IndexedCatalog
SUBDIR+= py-PgSQL
diff --git a/doc/CHANGES-2006 b/doc/CHANGES-2006
index c48d4fce893..d4e10f4813e 100644
--- a/doc/CHANGES-2006
+++ b/doc/CHANGES-2006
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES-2006,v 1.1984 2006/12/09 14:07:25 obache Exp $
+$NetBSD: CHANGES-2006,v 1.1985 2006/12/09 16:20:56 adam Exp $
Changes to the packages collection and infrastructure in 2006:
@@ -5598,3 +5598,10 @@ Changes to the packages collection and infrastructure in 2006:
Updated security/audit-packages to 1.46 [adrianp 2006-12-09]
Updated devel/libntlm to 0.3.12 [obache 2006-12-09]
Updated security/gsasl to 0.2.15 [obache 2006-12-09]
+ Added databases/postgresql82 version 8.2.0 [adam 2006-12-09]
+ Added databases/postgresql82-client version 8.2.0 [adam 2006-12-09]
+ Added databases/postgresql82-server version 8.2.0 [adam 2006-12-09]
+ Added databases/postgresql82-plperl version 8.2.0 [adam 2006-12-09]
+ Added databases/postgresql82-plpython version 8.2.0 [adam 2006-12-09]
+ Added databases/postgresql82-pltcl version 8.2.0 [adam 2006-12-09]
+ Added databases/postgresql82-tsearch2 version 8.2.0 [adam 2006-12-09]
diff --git a/doc/TODO b/doc/TODO
index 44fbf58a1c4..972ada10a80 100644
--- a/doc/TODO
+++ b/doc/TODO
@@ -1,4 +1,4 @@
-$NetBSD: TODO,v 1.5755 2006/12/09 14:07:25 obache Exp $
+$NetBSD: TODO,v 1.5756 2006/12/09 16:20:57 adam Exp $
Suggested new packages
======================
@@ -870,7 +870,6 @@ Suggested package updates
o poppy-4.01
o poptop-1.3.0
o posh-0.4.3
- o postgresql-8.2
o postgresql81-postgis-1.1.6
o postgresql_autodoc-1.25
o postgrey-1.27
diff --git a/mk/pgsql.buildlink3.mk b/mk/pgsql.buildlink3.mk
index 7c85d8555b0..ec553fdb9dc 100644
--- a/mk/pgsql.buildlink3.mk
+++ b/mk/pgsql.buildlink3.mk
@@ -1,4 +1,4 @@
-# $NetBSD: pgsql.buildlink3.mk,v 1.17 2006/10/18 20:48:58 rillig Exp $
+# $NetBSD: pgsql.buildlink3.mk,v 1.18 2006/12/09 16:18:55 adam Exp $
#
# User-settable variables:
#
@@ -21,7 +21,7 @@ PGVERSION_MK= defined
.include "../../mk/bsd.prefs.mk"
PGSQL_VERSION_DEFAULT?= 80
-PGSQL_VERSIONS_ACCEPTED?= 81 80 74
+PGSQL_VERSIONS_ACCEPTED?= 82 81 80 74
# transform the list into individual variables
.for pv in ${PGSQL_VERSIONS_ACCEPTED}
@@ -46,6 +46,9 @@ _PGSQL_VERSION_74_INSTALLED= yes
_PGSQL_VERSION_73_INSTALLED=yes
.endif
.else
+.if exists(${LOCALBASE}/lib/libecpg.so.5.0.2)
+_PGSQL_VERSION_82_INSTALLED= yes
+.endif
.if exists(${LOCALBASE}/lib/libecpg.so.5.0.1)
_PGSQL_VERSION_81_INSTALLED= yes
.endif
@@ -97,7 +100,10 @@ _PGSQL_VERSION= ${_PGSQL_VERSION_FIRSTACCEPTED}
#
# set variables for the version we decided to use:
#
-.if ${_PGSQL_VERSION} == "81"
+.if ${_PGSQL_VERSION} == "82"
+PGSQL_TYPE= postgresql82-client
+PGPKGSRCDIR= ../../databases/postgresql82-client
+.elif ${_PGSQL_VERSION} == "81"
PGSQL_TYPE= postgresql81-client
PGPKGSRCDIR= ../../databases/postgresql81-client
.elif ${_PGSQL_VERSION} == "80"