blob: 19d263f0cc81ab0d0b475072487a6b32ab4e394b (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ucarp-1.1.ebuild,v 1.3 2005/03/01 12:43:02 xmerlin Exp $
inherit eutils
DESCRIPTION="UCARP allows a couple of hosts to share common virtual IP addresses in order to provide automatic failover. It is a portable userland implementation of the secure and patent-free Common Address Redundancy Protocol (CARP, OpenBSD's alternative to the VRRP).
Strong points of the CARP protocol are : very low overhead, cryptographically signed messages, interoperability between different operating systems and no need for any dedicated extra network link between redundant hosts.
"
HOMEPAGE="http://www.ucarp.org"
LICENSE="GPL-2"
DEPEND="virtual/libpcap"
SRC_URI="ftp://ftp.ucarp.org/pub/ucarp/${P}.tar.gz"
SLOT="0"
KEYWORDS="x86 ~amd64 ~ppc"
IUSE=""
src_compile() {
econf || die
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install || die
dodoc README INSTALL NEWS ChangeLog || die
dodoc examples/linux/vip-up.sh examples/linux/vip-down.sh
}
|