diff options
author | Dawid Węgliński <cla@gentoo.org> | 2007-12-25 23:12:13 +0000 |
---|---|---|
committer | Dawid Węgliński <cla@gentoo.org> | 2007-12-25 23:12:13 +0000 |
commit | e67a41842c9d923e041ad26830fe8936b2a3aea1 (patch) | |
tree | 3a7c1111a3547f229367865ad4fc014ebb9e94c3 /net-misc/balance/balance-3.40.ebuild | |
parent | Version bump, to close #198357 and CVE-2007-5741 (diff) | |
download | historical-e67a41842c9d923e041ad26830fe8936b2a3aea1.tar.gz historical-e67a41842c9d923e041ad26830fe8936b2a3aea1.tar.bz2 historical-e67a41842c9d923e041ad26830fe8936b2a3aea1.zip |
Version bump for #203339; remove old
Package-Manager: portage-2.1.3.19
Diffstat (limited to 'net-misc/balance/balance-3.40.ebuild')
-rw-r--r-- | net-misc/balance/balance-3.40.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net-misc/balance/balance-3.40.ebuild b/net-misc/balance/balance-3.40.ebuild new file mode 100644 index 000000000000..6634268f7b0a --- /dev/null +++ b/net-misc/balance/balance-3.40.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/balance/balance-3.40.ebuild,v 1.1 2007/12/25 23:12:12 cla Exp $ + +inherit toolchain-funcs + +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="~amd64 ~ppc ~x86" +IUSE="doc" + +DEPEND="doc? ( virtual/ghostscript )" +RDEPEND="" + +src_compile() { + use doc || touch balance.pdf + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die +} + +src_install() { + dosbin balance || die + doman balance.1 + use doc && dodoc balance.pdf + dodir /var/run/balance + fperms 1755 /var/run/balance +} |