1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00
freebsd-ports/databases/pgpool-II-35/Makefile
Torsten Zuehlsdorff 272f3df3c0 databases/pgpool-II-35: Update from 3.5.22 to 3.5.24
Changelog for 3.5.23:

Bug fixes

    Fix incorrect query rewrite in replication mode. (Bo Peng)

    Fix assorted ancient v2 protocol bugs. (Tatsuo Ishii)

    Fix problem that syslog_facility doesn't change by reload. (bug 548) (Takuma Hoshiai)

    Fix Pgpool-II shutdown failed in certain case. (Tatsuo Ishii)

    Fix segfault when executing an erroneous query after DEALLOCATE a named statement. (bug 546) (Tatsuo Ishii)

    Add "-I" option to arping_cmd command default setting. (Bo Peng)

Changelog taken from: https://www.pgpool.net/docs/latest/en/html/release-3-5-23.html

Changelog for 3.5.24:

Changes

    Check if socket file exists at startup and remove them if PID file doesn't exist to avoid bind() failire. (Bo Peng)

Bug fixes

    Fix incorrect query rewriting in native replication mode. (bug 551) (Bo Peng)

    Fix pgpool_setup to support PostgreSQL 12. (Tatsuo Ishii)

    Fix occasional regression test failure. (Tatsuo Ishii)

    Fix replication delay worker segfault when application_name in primary_conninfo is an empty string. (bug 565) (Tatsuo Ishii)

    Fix the bug with ignored syslog setting. (Bo Peng)

Changelog taken from: https://www.pgpool.net/docs/latest/en/html/release-3-5-24.html
2020-03-15 21:14:00 +00:00

45 lines
975 B
Makefile

# Created by: Choe, Cheng-Dae <whitekid@gmail.com>
# $FreeBSD$
PORTNAME= pgpool-II
PORTVERSION= 3.5.24
CATEGORIES= databases
MASTER_SITES= http://www.pgpool.net/mediawiki/images/
PKGNAMESUFFIX= 35
MAINTAINER= tz@FreeBSD.org
COMMENT= Connection pool server for PostgreSQL
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/COPYING
PORTSCOUT= limit:^3.5.[0-9]*
USES= gmake libtool pgsql:9.3+
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
USE_RC_SUBR= pgpool
CONFLICTS= pgpool-II-[0-9]*
PORTDOCS= *
OPTIONS_DEFINE= DOCS SSL
OPTIONS_DEFAULT= SSL
SSL_CONFIGURE_WITH= openssl
SSL_USES= ssl
post-install:
@${MKDIR} ${STAGEDIR}/var/run/pgpool
${INSTALL_LIB} ${WRKSRC}/src/libs/pcp/.libs/libpcp.so.1.0.0 ${STAGEDIR}${PREFIX}/lib
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
cd ${WRKSRC} && ${COPYTREE_SHARE} doc ${STAGEDIR}${DOCSDIR} "-not -name Makefile.\*"
.for f in AUTHORS ChangeLog NEWS TODO
${INSTALL_DATA} ${WRKSRC}/$f ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>