diff options
author | Christian Zoffoli <xmerlin@gentoo.org> | 2006-03-13 02:08:12 +0000 |
---|---|---|
committer | Christian Zoffoli <xmerlin@gentoo.org> | 2006-03-13 02:08:12 +0000 |
commit | a1dc0d8e125c68d3a19b8a0fd60295604d80bfef (patch) | |
tree | 453129b4f2441d33e140a5d670e6078438b888d9 /net-misc/ucarp/ucarp-1.2.ebuild | |
parent | Version bump, ebuild cleanup. (diff) | |
download | historical-a1dc0d8e125c68d3a19b8a0fd60295604d80bfef.tar.gz historical-a1dc0d8e125c68d3a19b8a0fd60295604d80bfef.tar.bz2 historical-a1dc0d8e125c68d3a19b8a0fd60295604d80bfef.zip |
Version bump.
Package-Manager: portage-2.0.51.22-r3
Diffstat (limited to 'net-misc/ucarp/ucarp-1.2.ebuild')
-rw-r--r-- | net-misc/ucarp/ucarp-1.2.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/net-misc/ucarp/ucarp-1.2.ebuild b/net-misc/ucarp/ucarp-1.2.ebuild new file mode 100644 index 000000000000..f52203701caf --- /dev/null +++ b/net-misc/ucarp/ucarp-1.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ucarp-1.2.ebuild,v 1.1 2006/03/13 02:08:12 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 +} |