mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
9beeaa327d
- Add pgpool_flags rcvar for rc script - Mark DEPRECATED as upstream EOL reaches on 2022-11 - Set EXPIRATION_DATE to 2022-12-30 Approved by: tz (private email) Relnotes: https://www.pgpool.net/docs/latest/en/html/release-3-7-23.html Sponsored by: Bounce Experts
46 lines
996 B
Makefile
46 lines
996 B
Makefile
PORTNAME= pgpool-II
|
|
PORTVERSION= 3.7.23
|
|
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
|
|
|
|
DEPRECATED= Upstream EOL reaches on 2022-11 use pgpool-II-43
|
|
EXPIRATION_DATE= 2022-12-30
|
|
|
|
USES= gmake libtool pgsql:9.6+
|
|
USE_LDCONFIG= yes
|
|
USE_RC_SUBR= pgpool
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFLICTS= pgpool-II
|
|
|
|
PORTSCOUT= limit:^3.7.[0-9]*
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS SSL
|
|
OPTIONS_DEFAULT= SSL
|
|
|
|
SSL_USES= ssl
|
|
SSL_CONFIGURE_WITH= openssl
|
|
|
|
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>
|