blob: 44d4c726c654e2a8fd40ab8cc6cd471f9832b7fb (
plain)
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
|
# New ports collection makefile for: balance
# Date created: Wed 6 Dec 2000
# Whom: Joseph Scott <joseph@randomnetworks.com>
#
# $FreeBSD$
#
PORTNAME= balance
PORTVERSION= 3.42
PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= http://www.inlab.de/
MAINTAINER= joseph@randomnetworks.com
COMMENT= Simple but powerful generic tcp proxy with round robin features
ALL_TARGET= balance
USE_RC_SUBR= balance.sh
MAN1= balance.1
pre-build:
@${REINPLACE_CMD} -e 's|^CFLAGS|CFLAGS?|' \
-e 's|^CC|CC?|' ${WRKSRC}/Makefile
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/balance ${PREFIX}/bin
@${INSTALL_MAN} ${WRKSRC}/balance.1 ${PREFIX}/man/man1
@${MKDIR} /var/run/balance
.include <bsd.port.mk>
|