freebsd-ports/databases/pgpool-II/Makefile
Marcus Alves Grando 0598ae5c65 pgpool is a connection pool server for PostgreSQL. pgpool runs between
PostgreSQL's clients(front ends) and servers(back ends). A PostgreSQL client can
connect to pgpool as if it were a standard PostgreSQL server.

pgpool caches the connection to PostgreSQL server to reduce the overhead to
establish the connection to it.

WWW:	http://pgpool.projects.postgresql.org/

PR:		87701
Submitted by:	Choe, Cheng-Dae <whitekid@gmail.com>
2005-11-03 12:42:48 +00:00

29 lines
609 B
Makefile

# New ports collection makefile for: pgpool
# Date created: 2005-10-19
# Whom: Choe, Cheng-Dae <whitekid@gmail.com>
#
# $FreeBSD$
#
PORTNAME= pgpool
PORTVERSION= 2.6.3
CATEGORIES= databases
MASTER_SITES= http://pgfoundry.org/frs/download.php/426/
MAINTAINER= whitekid@gmail.com
COMMENT= A connection pool server for PostgreSQL
USE_GMAKE= yes
GNU_CONFIGURE= yes
PORTDOCS= README AUTHORS COPYING ChangeLog INSTALL NEWS TODO README.euc_jp
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS}
${INSTALL_MAN} ${WRKSRC}/$f ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>