summaryrefslogtreecommitdiff
blob: e440f830f7be07958f7ef9c6bcd49d7db8a642b1 (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
# 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.1.1 2005/11/30 09:55:30 chriswhite 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="~ppc ~x86"
IUSE="doc"

DEPEND="doc? ( virtual/ghostscript )"
RDEPEND=""

src_compile() {
	use doc || touch balance.pdf balance.ps
	emake CFLAGS="${CFLAGS}" || die
}

src_install() {
	dosbin balance || die
	doman balance.1
	use doc && dodoc balance.pdf balance.ps
	dodir /var/run/balance
	fperms 1755 /var/run/balance
}