Changelog: - Test: Fix old JDBC functions and typos in regression test 068.memqcache_bug. (Takuma Hoshiai) - Doc: Fix configuration change timing regarding memory_cache_enabled. (Tatsuo Ishii) - Fix online recovery failed due to client_idle_limit_in_recovery in certain cases. (bug 431) (Tatsuo Ishii) - Reduce memory usage when large data set is returned from backend. (bug 462) (Tatsuo Ishii) - Test: Fix syntax error in extended query test script. (Tatsuo Ishii) - Fix corner case bug when strip_quote() handle a empty query string. (bug 458) (Tatsuo Ishii) - Doc: Mention that schema qualifications cannot be used in white/black_function_list. (Tatsuo Ishii) - Fix typo about wd_priority in watchdog_setup. (Takuma Hoshiai) - Fix Pgpool child segfault if failover occurs when trying to establish a connection. (Tatsuo Ishii) - Doc: fix typo in logdir description. (bug 453) (Tatsuo Ishii) - Fix Pgpool-II hang if a client sends a extended query message such as close after sync message but before next simple query. (Tatsuo Ishii) - Fix Pgpool-II hang when idle_in_transaction_session_timeout = on. (bug 448) (Tatsuo Ishii) - Doc: Fix Japanese document typo in pcp_common_options. (Bo Peng) Changelog taken from: http://www.pgpool.net/docs/latest/en/html/release-3-7-8.html MFH: 2019Q1
43 lines
923 B
Makefile
43 lines
923 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= pgpool-II
|
|
PORTVERSION= 3.7.8
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.pgpool.net/mediawiki/images/
|
|
PKGNAMESUFFIX= 37
|
|
|
|
MAINTAINER= tz@FreeBSD.org
|
|
COMMENT= Connection pool server for PostgreSQL
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
PORTSCOUT= limit:^3.7.[0-9]*
|
|
|
|
USES= gmake libtool pgsql:9.6+
|
|
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>
|