mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
bcc4614ebb
PR: ports/184440, ports/184441, ports/184442, ports/184443, ports/184444, ports/184445, ports/184446, ports/184447, ports/184448, ports/184449, ports/184450 Submitted by: mat Approved by: portmgr (bapt)
61 lines
1.5 KiB
Makefile
61 lines
1.5 KiB
Makefile
# Created by: Choe, Cheng-Dae <whitekid@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pgpool-II
|
|
PORTVERSION= 2.2.6
|
|
PORTREVISION= 1
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://pgfoundry.org/frs/download.php/2478/
|
|
PKGNAMESUFFIX= 22
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
COMMENT= A connection pool server for PostgreSQL
|
|
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_PGSQL= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
CONFLICTS= pgpool-3.* pgpool-II-3.* pgpool-II-23-* pgpool-II-30-*
|
|
USE_RC_SUBR= pgpool
|
|
|
|
PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README README.euc_jp
|
|
PORTDOCS+= TODO
|
|
PORTDOCShtml= pgpool-en.html pgpool-ja.html pgpool.css
|
|
PORTDOCShtml+= tutorial-en.html tutorial-ja.html
|
|
|
|
MAN8= pgpool.8
|
|
|
|
NO_STAGE= yes
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|echo aout|echo elf|g' \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's| pg_config| ${LOCALBASE}/bin/pg_config|g' \
|
|
${WRKSRC}/sql/pgpool-recovery/Makefile
|
|
|
|
post-build:
|
|
@cd ${WRKSRC}/sql/pgpool-recovery && ${GMAKE}
|
|
|
|
pre-install:
|
|
${MKDIR} ${DATADIR} ${EXAMPLESDIR}
|
|
|
|
post-install:
|
|
@cd ${WRKSRC}/sql/pgpool-recovery && ${GMAKE} ${INSTALL_TARGET}
|
|
${INSTALL_DATA} ${WRKSRC}/sample/dist_def_pgbench.sql ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/sample/replicate_def_pgbench.sql ${DATADIR}
|
|
.for f in pgpool_recovery pgpool_recovery_pitr pgpool_remote_start
|
|
${INSTALL_SCRIPT} ${WRKSRC}/sample/${f} ${EXAMPLESDIR}
|
|
.endfor
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_MAN} ${WRKSRC}/$f ${DOCSDIR}
|
|
.endfor
|
|
.for f in ${PORTDOCShtml}
|
|
${INSTALL_MAN} ${WRKSRC}/doc/$f ${DOCSDIR}
|
|
.endfor
|
|
PORTDOCS+= ${PORTDOCShtml}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|