blob: 47cd345ae425b2cfb2172af0cbe548bee1f87e5b (
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
30
31
32
|
# New ports collection makefile for: postgresql-relay
# Date created: 14 February 2003
# Whom: Edwin Groothuis (edwin@mavetju.org)
#
# $FreeBSD$
#
PORTNAME= postgresql-relay
PORTVERSION= 1.3.2
PORTREVISION= 1
CATEGORIES= databases net
MASTER_SITES= http://www.mavetju.org/download/
MAINTAINER= edwin@mavetju.org
COMMENT= Multiplex multiple PostgreSQL databases to one relay
MAN8= postgresql-relay.8
PLIST_FILES= bin/postgresql-relay \
etc/postgresql-relay.conf-sample
USE_RC_SUBR= postgresql-relay
USE_PERL5_BUILD=yes
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/postgresql-relay ${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/postgresql-relay.conf-sample ${PREFIX}/etc/postgresql-relay.conf-sample
${INSTALL_MAN} ${WRKSRC}/postgresql-relay.8 ${MAN8PREFIX}/man/man8
post-install:
${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|