summaryrefslogtreecommitdiff
path: root/databases/tcl-postgresql
diff options
context:
space:
mode:
authorjlam <jlam>2003-01-05 20:12:07 +0000
committerjlam <jlam>2003-01-05 20:12:07 +0000
commit7f0030bc39078609aaf6637c4c9853aa4e08ad1b (patch)
tree8842dbd7cb62a42e6ad7ce2170133b6607b61bc2 /databases/tcl-postgresql
parenta6d803aaabd8c6ce7a12d84e8b008e97bcb6d72b (diff)
downloadpkgsrc-7f0030bc39078609aaf6637c4c9853aa4e08ad1b.tar.gz
Updated databases/postgresql to 7.3.1.
================================================================== | NOTE: A dump-and-restore is required to update your databases | | if you wish to update postgresql-server. If your | | application examines the system catalogs, additional | | changes will be required due to the introduction of | | schemas in 7.3; for more information, see: | | | | http://www.ca.postgresql.org/docs/momjian/upgrade_tips_7.3 | ================================================================== Major changes from version 7.2.3 include: Schemas Schemas allow users to create objects in separate namespaces, so two people or applications can have tables with the same name. There is also a public schema for shared tables. Table/index creation can be restricted by removing permissions on the public schema. Drop Column PostgreSQL now supports the ALTER TABLE ... DROP COLUMN functionality. Table Functions Functions returning multiple rows and/or multiple columns are now much easier to use than before. You can call such a "table function" in the SELECT FROM clause, treating its output like a table. Also, PL/pgSQL functions can now return sets. Prepared Queries PostgreSQL now supports prepared queries, for improved performance. Dependency Tracking PostgreSQL now records object dependencies, which allows improvements in many areas. "DROP" statements now take either CASCADE or RESTRICT to control whether dependent objects are also dropped. Privileges Functions and procedural languages now have privileges, and functions can be defined to run with the privileges of their creator. Internationalization Both multibyte and locale support are now always enabled. Logging A variety of logging options have been enhanced. Interfaces A large number of interfaces have been moved to http://gborg.postgresql.org where they can be developed and released independently. Functions/Identifiers By default, functions can now take up to 32 parameters, and identifiers can be up to 63 bytes long. Also, OPAQUE is now deprecated: there are specific "pseudo-datatypes" to represent each of the former meanings of OPAQUE in function argument and result types.
Diffstat (limited to 'databases/tcl-postgresql')
-rw-r--r--databases/tcl-postgresql/Makefile8
-rw-r--r--databases/tcl-postgresql/PLIST6
-rw-r--r--databases/tcl-postgresql/buildlink2.mk4
3 files changed, 8 insertions, 10 deletions
diff --git a/databases/tcl-postgresql/Makefile b/databases/tcl-postgresql/Makefile
index 27eb03d749d..3bf2bbb3fc4 100644
--- a/databases/tcl-postgresql/Makefile
+++ b/databases/tcl-postgresql/Makefile
@@ -1,11 +1,9 @@
-# $NetBSD: Makefile,v 1.13 2002/10/19 03:03:51 jlam Exp $
+# $NetBSD: Makefile,v 1.14 2003/01/05 20:12:28 jlam Exp $
PKGNAME= tcl-postgresql-${BASE_VERS}
COMMENT= Tcl interface to PostgreSQL
-USE_BUILDLINK2= # defined
-
-.include "../../databases/postgresql/Makefile.common"
+.include "../postgresql/Makefile.common"
CONFIGURE_ARGS+= --with-openssl=${SSLBASE}
CONFIGURE_ARGS+= --with-tcl
@@ -21,7 +19,7 @@ post-install:
${GTAR} zxCf ${PREFIX}/man ${WRKSRC}/doc/man.tar.gz \
`${SED} -e "s|#.*||" ${FILESDIR}/man.tcl`
-.include "../../databases/postgresql-lib/buildlink2.mk"
+.include "../postgresql-lib/buildlink2.mk"
.include "../../lang/tcl/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/databases/tcl-postgresql/PLIST b/databases/tcl-postgresql/PLIST
index 2ff92d34fcc..2db28b7c46c 100644
--- a/databases/tcl-postgresql/PLIST
+++ b/databases/tcl-postgresql/PLIST
@@ -1,8 +1,8 @@
-@comment $NetBSD: PLIST,v 1.2 2002/04/04 07:41:06 jlam Exp $
+@comment $NetBSD: PLIST,v 1.3 2003/01/05 20:12:29 jlam Exp $
bin/pgtclsh
-include/pgsql/libpgtcl.h
+include/postgresql/libpgtcl.h
lib/libpgtcl.a
lib/libpgtcl.so
lib/libpgtcl.so.2
-lib/libpgtcl.so.2.2
+lib/libpgtcl.so.2.3
man/man1/pgtclsh.1
diff --git a/databases/tcl-postgresql/buildlink2.mk b/databases/tcl-postgresql/buildlink2.mk
index e93e70613d3..73a6f65a92f 100644
--- a/databases/tcl-postgresql/buildlink2.mk
+++ b/databases/tcl-postgresql/buildlink2.mk
@@ -1,10 +1,10 @@
-# $NetBSD: buildlink2.mk,v 1.2 2002/08/25 19:22:12 jlam Exp $
+# $NetBSD: buildlink2.mk,v 1.3 2003/01/05 20:12:29 jlam Exp $
.if !defined(TCL_POSTGRESQL_BUILDLINK2_MK)
TCL_POSTGRESQL_BUILDLINK2_MK= # defined
BUILDLINK_PACKAGES+= tcl-postgresql
-BUILDLINK_DEPENDS.tcl-postgresql?= tcl-postgresql>=7.0
+BUILDLINK_DEPENDS.tcl-postgresql?= tcl-postgresql>=7.3.1
BUILDLINK_PKGSRCDIR.tcl-postgresql?= ../../databases/tcl-postgresql
EVAL_PREFIX+= BUILDLINK_PREFIX.tcl-postgresql=tcl-postgresql