ports/135703: Updated port slony-1

Chris Petrik c.petrik.sosa at gmail.com
Thu Jun 18 13:30:02 UTC 2009


>Number:         135703
>Category:       ports
>Synopsis:       Updated port slony-1
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Jun 18 13:30:01 UTC 2009
>Closed-Date:
>Last-Modified:
>Originator:     Chris Petrik
>Release:        FreeBSD 7.2-Prerelease
>Organization:
Officialunix
>Environment:
FreeBSD pcbsd 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #12: Fri Apr 17 15:37:58 EDT 2009     root at pcbsdx32-7:/usr/obj/pcbsd-build71/cvs/7.1-src/sys/PCBSD  i386
>Description:
Update slony-1 port to 2.0.2
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	slony1/Makefile
#	slony1/distinfo
#	slony1/files
#	slony1/pkg-descr
#	slony1/pkg-plist
#
echo x - slony1/Makefile
sed 's/^X//' >slony1/Makefile << '2af44f5f8b64c215c79181f0112d295e'
X# New ports collection makefile for:	slony1
X# Date created:		20 Jun 2004
X# Whom:			Radim Kolar
X#
X# $FreeBSD: ports/databases/slony1/Makefile,v 1.38 2009/05/23 14:24:02 miwi Exp $
X#
X
XPORTNAME=	slony1
XPORTVERSION=	2.0.2
XCATEGORIES=	databases
XMASTER_SITES=	http://main.slony.info/downloads/2.0/source/
XDISTFILES=	${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \
X		${PORTNAME}-${PORTVERSION}-docs${EXTRACT_SUFX}
X
XMAINTAINER=	vivek at khera.org
XCOMMENT=	PostgreSQL master to multiple replicas replication system
X
XPGSQL_PORT=	${PORTSDIR}/databases/postgresql${PGSQL_VER}-server
XRUN_DEPENDS=	${LOCALBASE}/bin/postmaster:${PGSQL_PORT}
XBUILD_DEPENDS=	${LOCALBASE}/bin/postmaster:${PGSQL_PORT}
X
XGNU_CONFIGURE=	yes
XUSE_GMAKE=	yes
XUSE_BZIP2=	yes
XUSE_RC_SUBR=	slon.sh
X
XSUB_FILES=	pkg-message slon-mkservice.sh
XSUB_LIST+=	NAME=slon
X
XOPTIONS=	PERLTOOLS "Install perl configuration tools" Off
X
X.include <bsd.port.pre.mk>
X
X.if defined(WITH_PERLTOOLS)
XUSE_PERL5=	yes
XCONFIGURE_ARGS+=	--with-perltools=${LOCALBASE}/sbin
XRUN_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg
XBUILD_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg
XPLIST_SUB+=	PERLTOOLS=""
XSUB_LIST+=	PERLTOOLS=""
X.else
XPLIST_SUB+=	PERLTOOLS="@comment "
XSUB_LIST+=	PERLTOOLS="@comment "
X.endif
X
X# let configure find postgres stuff in non-standard places
XCONFIGURE_ARGS+=--with-pgconfigdir=${LOCALBASE}/bin \
X  --with-pgbindir=${LOCALBASE}/bin \
X  --with-pgincludedir=${LOCALBASE}/include \
X  --with-pgincludeserverdir=${LOCALBASE}/include/postgresql/server \
X  --with-pglibdir=${LOCALBASE}/lib \
X  --with-pgpkglibdir=${LOCALBASE}/lib/postgresql \
X  --with-pgsharedir=${LOCALBASE}/share/postgresql
X
XDEFAULT_PGSQL_VER?=83
X
X# Setting/finding PostgreSQL version we want.
X.if exists(${LOCALBASE}/bin/postmaster)
XPGSQL_VER!=	${LOCALBASE}/bin/postmaster -V | \
X		${SED} -En 's/.*PostgreSQL[^0-9]*([0-9]+)\.([0-9]+)\..*/\1\2/p'
X.elif exists(${LOCALBASE}/bin/pg_config)
XPGSQL_VER!=	${LOCALBASE}/bin/pg_config --version | \
X		${SED} -En 's/PostgreSQL[^0-9]*([0-9]*)\.([0-9]+)\..*/\1\2/p'
X.else
XPGSQL_VER=	${DEFAULT_PGSQL_VER}
X.endif
X
X.if ! defined(NO_INSTALL_MANPAGES)
XMAN1=	slon.1 slonik.1
X.endif
X
Xpost-install:
X.if ! defined(NOPORTDOCS)
X	${MKDIR} ${DOCSDIR}
X	${MKDIR} ${DOCSDIR}/adminguide
X	${MKDIR} ${DOCSDIR}/howto
X	${INSTALL_DATA} ${WRKSRC}/COPYRIGHT ${WRKSRC}/INSTALL ${WRKSRC}/SAMPLE ${WRKSRC}/README ${WRKSRC}/HISTORY-1.1 ${WRKSRC}/UPGRADING ${DOCSDIR}
X#	${INSTALL_DATA} ${WRKSRC}/doc/*/*.pdf ${DOCSDIR}
X	${INSTALL_DATA} ${WRKSRC}/doc/howto/*.txt ${WRKSRC}/doc/howto/*.html ${DOCSDIR}/howto/
X	${INSTALL_DATA} ${WRKSRC}/doc/adminguide/*.html ${WRKSRC}/doc/adminguide/*.png ${DOCSDIR}/adminguide/
X.endif
X.if ! defined(NO_INSTALL_MANPAGES)
X	${INSTALL_MAN} ${WRKSRC}/doc/adminguide/man1/*.1 ${MAN1PREFIX}/man/man1
X.endif
X	@${INSTALL_SCRIPT} ${WRKDIR}/slon-mkservice.sh ${PREFIX}/sbin/slon-mkservice
X	@${INSTALL_DATA} ${FILESDIR}/slon.conf-sample ${PREFIX}/etc/
X	@${CAT} ${PKGMESSAGE}
X
X.include <bsd.port.post.mk>
2af44f5f8b64c215c79181f0112d295e
echo x - slony1/distinfo
sed 's/^X//' >slony1/distinfo << '173bbb123c0620e715837042fb04a800'
XMD5 (slony1-2.0.2.tar.bz2) = bad7d73ab83ee87244df24de70ac319e
XSHA256 (slony1-2.0.2.tar.bz2) = 937ff0aad51cb4c7ef57d92431654c2d35ab22e0ff0f038f0a38e9c8af3b723f
XSIZE (slony1-2.0.2.tar.bz2) = 933793
XMD5 (slony1-2.0.2-docs.tar.bz2) = 19a42d920a6abe855d0e254cb24410c4
XSHA256 (slony1-2.0.2-docs.tar.bz2) = fde0954f65e102697890ad70d79b0928a41ab89d610500d01e8fd4424edb3d1b
XSIZE (slony1-2.0.2-docs.tar.bz2) = 242622
173bbb123c0620e715837042fb04a800
echo c - slony1/files
mkdir -p slony1/files > /dev/null 2>&1
echo x - slony1/pkg-descr
sed 's/^X//' >slony1/pkg-descr << '8950b874232796abb43a9519be534afc'
XSlony-I is enterprise-level "master to multiple slaves"
Xreplication system with cascading and failover.
X
XThe big picture for the development of Slony-I is to build
Xa master-slave system that includes all features and
Xcapabilities needed to replicate large databases to a
Xreasonably limited number of slave systems.
X
XSlony-I is developed as a system for data centers and backup
Xsites, where the normal mode of operation is that all nodes
Xare available.
X
XWWW: http://www.slony.info/
8950b874232796abb43a9519be534afc
echo x - slony1/pkg-plist
sed 's/^X//' >slony1/pkg-plist << 'f48bf3809e711ca07f6ee3142dcc3a21'
Xbin/slon
Xbin/slonik
Xbin/slony_logshipper
Xetc/rc.d/slon
Xetc/slon.conf-sample
Xetc/slon_tools.conf-sample
Xsbin/slon-mkservice
X%%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT
X%%PORTDOCS%%%%DOCSDIR%%/HISTORY-1.1
X%%PORTDOCS%%%%DOCSDIR%%/INSTALL
X%%PORTDOCS%%%%DOCSDIR%%/README
X%%PORTDOCS%%%%DOCSDIR%%/SAMPLE
X%%PORTDOCS%%%%DOCSDIR%%/UPGRADING
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/LEGALNOTICE.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/addthings.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/admconninfo.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/adminscripts.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/cluster.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/clustername.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/cmds.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/commandreference.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/complexenv.png
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/complexfail.png
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/concepts.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/ddlchanges.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/definingsets.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/dropthings.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/failover.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/faq.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/firstdb.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.add-missing-table-field-text-text-text-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.addpartiallogindices.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.altertableforreplication-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.altertablerestore-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.checkmoduleversion.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.cleanupevent.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.cleanupnodelock.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.copyfields-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.createevent-name-text-text-text-text-text-text-text-text-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.createevent-name-text-text-text-text-text-text-text-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.createevent-name-text-text-text-text-text-text-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.createevent-name-text-text-text-text-text-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.createevent-name-text-text-text-text-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.createevent-name-text-text-text-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.createevent-name-text-text-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.createevent-name-text-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.createevent-name-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.ddlscript-complete-int-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.ddlscript-complete-integer-text-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.ddlscript-prepare-int-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.ddlscript-prepare-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.denyaccess.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.determineattkindserial-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.determineattkindunique-text-name.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.determineidxnameserial-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.determineidxnameunique-text-name.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.disablenode-int-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.disablenode-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.droplisten-int-integer-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.droplisten-integer-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.dropnode-int-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.dropnode-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.droppath-int-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.droppath-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.dropset-int-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.dropset-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.droptrigger-int-integer-name.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.droptrigger-integer-name.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.enablenode-int-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.enablenode-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.enablesubscription-int-integer-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.enablesubscription-integer-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.failednode-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.failednode2-integer-integer-integer-bigint-bigint.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.failoverset-int-integer-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.forwardconfirm-integer-integer-bigint-timestamp-without-time-zone.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.generate-sync-event-interval.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.getlocalnodeid-name.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.getmoduleversion.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.getsessionrole-name.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.initializelocalnode-integer-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.killbackend-integer-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.lockedset.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.lockset-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.logswitch-finish.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.logswitch-start.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.logswitch-weekly.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.logtrigger.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.mergeset-int-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.mergeset-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.moveset-int-integer-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.moveset-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.reachablefromnode-integer-integerarray.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.rebuildlistenentries.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.registernodeconnection-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.registry-get-int4-text-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.registry-get-text-text-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.registry-get-timestamp-text-timestamp-without-time-zone.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.registry-set-int4-text-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.registry-set-text-text-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.registry-set-timestamp-text-timestamp-without-time-zone.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.sequencelastvalue-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.sequencesetvalue-integer-integer-bigint-bigint.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.setaddsequence-int-integer-integer-text-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.setaddsequence-integer-integer-text-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.setaddtable-int-integer-integer-text-name-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.setaddtable-integer-integer-text-name-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.setdropsequence-int-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.setdropsequence-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.setdroptable-int-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.setdroptable-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.setmovesequence-int-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.setmovesequence-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.setmovetable-int-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.setmovetable-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.setsessionrole-name-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.slon-quote-brute-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.slon-quote-input-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.slonyversion.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.slonyversionmajor.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.slonyversionminor.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.slonyversionpatchlevel.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.storelisten-int-integer-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.storelisten-integer-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.storenode-int-integer-text-boolean.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.storenode-integer-text-boolean.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.storepath-int-integer-integer-text-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.storepath-integer-integer-text-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.storeset-int-integer-integer-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.storeset-integer-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.storetrigger-int-integer-name.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.storetrigger-integer-name.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.subscribeset-int-integer-integer-integer-boolean.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.subscribeset-integer-integer-integer-boolean.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.tableaddkey-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.tabledropkey-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.tablehasserialkey-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.terminatenodeconnections-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.uninstallnode.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.unlockset-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.unsubscribeset-int-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.unsubscribeset-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.updaterelname-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.updatereloid-integer-integer.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/function.upgradeschema-text.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/hdrcmds.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/help.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/i13318.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/index.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/installation.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/listenpaths.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/locking.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/loganalysis.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/logshipping.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/maintenance.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/metacmds.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/monitoring.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/noslonik.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/partitioning.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/plainpaths.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/raceconditions.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/releasechecklist.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/requirements.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/reshape.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/runtime-config.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/schema.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/slon-archive-logging.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/slon-config-connection.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/slon-config-interval.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/slon.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/slonik.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/slonikref.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/slonikshell.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/slonstart.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/slonyadmin.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/slonyintro.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/slonylistenercosts.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/slonyupgrade.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtclonefinish.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtcloneprepare.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtcreateset.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtddlscript.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtdefine.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtdroplisten.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtdropnode.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtdroppath.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtdropset.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtdroptrigger.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtecho.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtexit.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtfailover.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtinclude.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtinitcluster.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtlockset.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtmergeset.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtmoveset.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtrepairconfig.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtrestartnode.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtsetaddsequence.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtsetaddtable.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtsetdropsequence.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtsetdroptable.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtsetmovesequence.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtsetmovetable.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtsleep.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtstorelisten.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtstorenode.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtstorepath.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtstoretrigger.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtsubscribeset.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtsync.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmttableaddkey.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtuninstallnode.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtunlockset.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtunsubscribeset.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtupdatefunctions.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/stmtwaitevent.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/subscribenodes.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/supportedplatforms.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/table.sl-confirm.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/table.sl-event.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/table.sl-listen.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/table.sl-log-1.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/table.sl-log-2.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/table.sl-node.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/table.sl-nodelock.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/table.sl-path.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/table.sl-registry.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/table.sl-seqlog.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/table.sl-sequence.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/table.sl-set.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/table.sl-setsync.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/table.sl-subscribe.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/table.sl-table.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/table.sl-trigger.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/testbed.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/triggers.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/usingslonik.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/versionupgrade.html
X%%PORTDOCS%%%%DOCSDIR%%/adminguide/view.sl-seqlastvalue.html
X%%PORTDOCS%%%%DOCSDIR%%/howto/helpitsbroken.txt
X%%PORTDOCS%%%%DOCSDIR%%/howto/randomfacts.txt
X%%PORTDOCS%%%%DOCSDIR%%/howto/schemadoc.html
X%%PORTDOCS%%%%DOCSDIR%%/howto/slonik_commands.html
X%%PORTDOCS%%%%DOCSDIR%%/howto/slony-I-basic-mstr-slv.txt
X%%PORTDOCS%%%%DOCSDIR%%/howto/slony-I-failover.txt
X%%PORTDOCS%%%%DOCSDIR%%/howto/slony-I-install.txt
X%%PORTDOCS%%%%DOCSDIR%%/howto/slony-I-overview.txt
X%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto
X%%PORTDOCS%%@dirrm %%DOCSDIR%%/adminguide
X%%PORTDOCS%%@dirrm %%DOCSDIR%%
f48bf3809e711ca07f6ee3142dcc3a21
exit



>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list