diff options
author | adam <adam@pkgsrc.org> | 2006-10-18 18:53:03 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2006-10-18 18:53:03 +0000 |
commit | 8bb1bfb5ec90cb095b97585118fa325d6c30ed4e (patch) | |
tree | 03af4e8d2ccb03c4e05af44982961e0a5157f82c /databases/slony1/Makefile | |
parent | 08f50ae39c94f46975d1d90a3a33ded52d464c94 (diff) | |
download | pkgsrc-8bb1bfb5ec90cb095b97585118fa325d6c30ed4e.tar.gz |
Changes 1.2.0:
- A major revision of memory management to limit memory usage by slon
daemons.
- Log switching: periodically
- pg_listener is now used dramatically less than it used to be, which
diminishes the number of dead tuples you will find in this table.
- DDL scripts are broken into individual statements
- Slony-I tables are now marked "WITHOUT OIDS" so that they do not
consume OIDS.
- When possible (based on log switching functionality), partial
indexes on sl_log_1 and sl_log_2 are created on a per-origin-node
basis.
- More...
Diffstat (limited to 'databases/slony1/Makefile')
-rw-r--r-- | databases/slony1/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/databases/slony1/Makefile b/databases/slony1/Makefile index c88d69b8e46..b3cef6a090d 100644 --- a/databases/slony1/Makefile +++ b/databases/slony1/Makefile @@ -1,19 +1,17 @@ -# $NetBSD: Makefile,v 1.3 2006/06/24 09:14:56 joerg Exp $ +# $NetBSD: Makefile,v 1.4 2006/10/18 18:53:03 adam Exp $ -DISTNAME= slony1-1.1.5 -PKGREVISION= 1 +DISTNAME= slony1-1.2.0 CATEGORIES= databases -MASTER_SITES= http://developer.postgresql.org/~wieck/slony1/download/ +MASTER_SITES= http://pgfoundry.org/frs/download.php/1136/ EXTRACT_SUFX= .tar.bz2 MAINTAINER= adam@NetBSD.org HOMEPAGE= http://gborg.postgresql.org/project/slony1/ COMMENT= Replication system for PostgreSQL -USE_TOOLS+= gmake - DEPENDS+= postgresql${PGSQL_VERSION}-server-[0-9]*:../../databases/postgresql${PGSQL_VERSION}-server +USE_TOOLS+= gmake GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-pgconfigdir=${PGSQL_PREFIX:Q}/bin CONFIGURE_ARGS+= --with-pgbindir=${PGSQL_PREFIX:Q}/bin @@ -24,7 +22,7 @@ CONFIGURE_ARGS+= --with-pgpkglibdir=${PGSQL_PREFIX:Q}/lib/postgresql CONFIGURE_ARGS+= --with-pgsharedir=${PGSQL_PREFIX:Q}/share/postgresql post-extract: - ${CP} ${WRKSRC}/makefiles/Makefile.freebsd ${WRKSRC}/makefiles/Makefile.dragonfly + cp ${WRKSRC}/makefiles/Makefile.freebsd ${WRKSRC}/makefiles/Makefile.dragonfly post-install: ${INSTALL_DATA} ${WRKSRC}/share/slon.conf-sample \ |