blob: eaa801bd0df55c1d5cacfd3fda3239f8e29afcca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/balance/balance-3.11.ebuild,v 1.1 2003/12/25 20:20:44 vapier Exp $
DESCRIPTION="TCP Load Balancing Port Forwarder"
HOMEPAGE="http://www.inlab.de/balance.html"
SRC_URI="mirror://sourceforge/balance/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
src_compile() {
emake CFLAGS="${CFLAGS}" || die
}
src_install() {
doman balance.1
dosbin balance
dodir /var/run/balance
fperms 1777 /var/run/balance
}
|