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