summaryrefslogtreecommitdiff
path: root/databases/tcl-postgresql
diff options
context:
space:
mode:
authorjlam <jlam>2002-04-04 07:41:00 +0000
committerjlam <jlam>2002-04-04 07:41:00 +0000
commit0a430e777c8269883068ad456ffe9ac99ae45262 (patch)
tree92dcf0303639c882d862f45ae23a442870d0b85c /databases/tcl-postgresql
parenteeb8845c0a3dfb2e82e5b0675b93a8c323c246a0 (diff)
downloadpkgsrc-0a430e777c8269883068ad456ffe9ac99ae45262.tar.gz
Update postgresql and related packages to 7.2. Thanks to Michael Graff
<explorer@flame.org> for most of the work on this update. Pkgsrc changes from the previous version include removing Makefile.ssl and some patches that have been integrated into this release of PostgreSQL. We leave open the question of when to byte-compile the Python modules for the PyGreSQL interface and just do it as before, although we should consider doing the compilation as a post-install step to ensure that the timestamps are correct. We also reorder some lines in the Makefile to include Makefile.common below certain definitions (GNU_CONFIGURE, USE_BUILDLINK_ONLY) as they may possibly trigger different portions of Makefile.common. *** Please note that a dump/restore is required to migrate an existing *** *** PostgreSQL installation to 7.2. *** Major changes from version 7.1.3 are geared toward improving use in high-volume applications and include: VACUUM Vacuuming no longer locks tables, thus allowing normal user access during the vacuum. A new "VACUUM FULL" command does old-style vacuum by locking the table and shrinking the on-disk copy of the table. Transactions There is no longer a problem with installations that exceed four billion transactions. OID's OID's are now optional. Users can now create tables without OID's for cases where OID usage is excessive. Optimizer The system now computes histogram column statistics during "ANALYZE", allowing much better optimizer choices. Security A new MD5 encryption option allows more secure storage and transfer of passwords. A new Unix-domain socket authentication option is available on Linux and BSD systems. PAM authentication is also available. Statistics Administrators can use the new table access statistics module to get fine-grained information about table and index usage.
Diffstat (limited to 'databases/tcl-postgresql')
-rw-r--r--databases/tcl-postgresql/Makefile14
-rw-r--r--databases/tcl-postgresql/PLIST4
2 files changed, 8 insertions, 10 deletions
diff --git a/databases/tcl-postgresql/Makefile b/databases/tcl-postgresql/Makefile
index cf2464b57ef..577f251ed2b 100644
--- a/databases/tcl-postgresql/Makefile
+++ b/databases/tcl-postgresql/Makefile
@@ -1,20 +1,18 @@
-# $NetBSD: Makefile,v 1.10 2001/12/03 08:06:28 jlam Exp $
+# $NetBSD: Makefile,v 1.11 2002/04/04 07:41:05 jlam Exp $
-.include "../../databases/postgresql/Makefile.common"
-.include "../../databases/postgresql/Makefile.ssl"
-
-PKGNAME= tcl-postgresql-${PG_BASE_VERS}
+PKGNAME= tcl-postgresql-${BASE_VERS}
COMMENT= Tcl interface to PostgreSQL
-USE_BUILDLINK_ONLY= # defined
-BUILDLINK_DEPENDS.postgresql-lib= postgresql-lib>=${PG_BASE_VERS}
+USE_BUILDLINK_ONLY= YES
-MAKE_ENV+= INSTALLED_LIBPQ=1
+.include "../../databases/postgresql/Makefile.common"
+CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_DIR}
CONFIGURE_ARGS+= --with-tcl
CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_DIR}/lib"
CONFIGURE_ENV+= TCLSH="${TCLSH}"
TCLSH= ${LOCALBASE}/bin/tclsh
+MAKE_ENV+= INSTALLED_LIBPQ=1
DIRS_TO_BUILD= src/interfaces/libpgtcl src/bin/pgtclsh
diff --git a/databases/tcl-postgresql/PLIST b/databases/tcl-postgresql/PLIST
index 1424431c976..2ff92d34fcc 100644
--- a/databases/tcl-postgresql/PLIST
+++ b/databases/tcl-postgresql/PLIST
@@ -1,8 +1,8 @@
-@comment $NetBSD: PLIST,v 1.1 2001/11/01 00:12:54 zuntum Exp $
+@comment $NetBSD: PLIST,v 1.2 2002/04/04 07:41:06 jlam Exp $
bin/pgtclsh
include/pgsql/libpgtcl.h
lib/libpgtcl.a
lib/libpgtcl.so
lib/libpgtcl.so.2
-lib/libpgtcl.so.2.1
+lib/libpgtcl.so.2.2
man/man1/pgtclsh.1