pkgsrc/databases/slony1/Makefile
adam ee88c06167 Changes 2.0.3:
* PostgreSQL 8.4 has been released; slonik needs to explicitly recognize it
* Add in slonikconfdump.sh tool, which generates a slonik script to duplicate
  the configuration of a Slony-I cluster
* Significant fixes to documentation to reflect 2.0 changes
* Add "OMIT COPY" option to the Slonik "SUBSCRIBE SET" command
* Document process for Slony-I 2.0 upgrade using OMIT COPY option
* Fix to race condition where file descriptor copies were being made at
  the wrong time in the scheduler
* Modify "testseqnames" regression test to create a whole bunch of
  sequences to validate that things don't break down with either lots of
  them, or where IDs are large numbers
* Change minimum debugging level to -1 to allow suppressing logging
* Bug 92 - compression of event numbers had a bug where events >
  2^31-1 would overflow the "int" value
* Autovacuum handling changes in PostgreSQL 8.4 - we pull metadata
  from pg_class.reloptions, instead of pg_autovacuum
* logswitch fix resolving a potential data loss + statement blocking bug...
* Add LOG_NAME_SUFFIX to altperl tools
2010-04-23 09:00:45 +00:00

36 lines
1.2 KiB
Makefile

# $NetBSD: Makefile,v 1.15 2010/04/23 09:00:45 adam Exp $
DISTNAME= slony1-2.0.3
CATEGORIES= databases
MASTER_SITES= http://slony.info/downloads/2.0/source/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= adam@NetBSD.org
HOMEPAGE= http://main.slony.info/
COMMENT= Replication system for PostgreSQL
PKG_DESTDIR_SUPPORT= user-destdir
PGSQL_VERSIONS_ACCEPTED=84 83
DEPENDS+= postgresql${PGSQL_VERSION}-server-[0-9]*:../../databases/postgresql${PGSQL_VERSION}-server
USE_TOOLS+= gmake
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-pgconfigdir=${PGSQL_PREFIX}/bin
CONFIGURE_ARGS+= --with-pgbindir=${PGSQL_PREFIX}/bin
CONFIGURE_ARGS+= --with-pgincludedir=${PGSQL_PREFIX}/include/postgresql
CONFIGURE_ARGS+= --with-pgincludeserverdir=${PGSQL_PREFIX}/include/postgresql/server
CONFIGURE_ARGS+= --with-pglibdir=${PGSQL_PREFIX}/lib
CONFIGURE_ARGS+= --with-pgpkglibdir=${PGSQL_PREFIX}/lib/postgresql
CONFIGURE_ARGS+= --with-pgsharedir=${PGSQL_PREFIX}/share/postgresql
post-extract:
cp ${WRKSRC}/makefiles/Makefile.freebsd ${WRKSRC}/makefiles/Makefile.dragonfly
post-install:
${INSTALL_DATA} ${WRKSRC}/share/slon.conf-sample \
${DESTDIR}${PGSQL_PREFIX}/share/postgresql
.include "../../mk/pgsql.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"