blob: c17ebd02e584562efbeb233fa756d9d4ce1f7382 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Created by: Choe, Cheng-Dae <whitekid@gmail.com>
# $FreeBSD$
PORTNAME= pgpool
PORTVERSION= 3.4.1
PORTREVISION= 1
CATEGORIES= databases
MASTER_SITES= http://pgfoundry.org/frs/download.php/1446/
MAINTAINER= ports@FreeBSD.org
COMMENT= Connection pool server for PostgreSQL
USES= gmake
GNU_CONFIGURE= yes
USE_RC_SUBR= pgpool
CONFLICTS= pgpool-II-*
PORTDOCS= README AUTHORS COPYING ChangeLog INSTALL NEWS TODO README.euc_jp
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for f in ${PORTDOCS}
${INSTALL_MAN} ${WRKSRC}/$f ${STAGEDIR}${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|