summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2009-09-12 09:13:59 +0000
committerPatrick Lauer <patrick@gentoo.org>2009-09-12 09:13:59 +0000
commit6bd0684f65430d8bbc1236081dc542614a6a194e (patch)
treedbcfd3b6b5d6c4f6fdd0c12be4ed67bfee30331a /net-misc/ucarp
parentDon't set -march, as it makes the host compiler vomit (diff)
downloadgentoo-2-6bd0684f65430d8bbc1236081dc542614a6a194e.tar.gz
gentoo-2-6bd0684f65430d8bbc1236081dc542614a6a194e.tar.bz2
gentoo-2-6bd0684f65430d8bbc1236081dc542614a6a194e.zip
Bump
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/ucarp')
-rw-r--r--net-misc/ucarp/ChangeLog9
-rw-r--r--net-misc/ucarp/ucarp-1.5.1.ebuild27
2 files changed, 34 insertions, 2 deletions
diff --git a/net-misc/ucarp/ChangeLog b/net-misc/ucarp/ChangeLog
index fd9d2e5b0e2d..7d1bcba1d950 100644
--- a/net-misc/ucarp/ChangeLog
+++ b/net-misc/ucarp/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-misc/ucarp
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ChangeLog,v 1.13 2008/11/12 17:24:20 wschlich Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ChangeLog,v 1.14 2009/09/12 09:13:59 patrick Exp $
+
+*ucarp-1.5.1 (12 Sep 2009)
+
+ 12 Sep 2009; Patrick Lauer <patrick@gentoo.org> +ucarp-1.5.1.ebuild:
+ Bump
*ucarp-1.5 (12 Nov 2008)
diff --git a/net-misc/ucarp/ucarp-1.5.1.ebuild b/net-misc/ucarp/ucarp-1.5.1.ebuild
new file mode 100644
index 000000000000..1d57b7c2215a
--- /dev/null
+++ b/net-misc/ucarp/ucarp-1.5.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ucarp-1.5.1.ebuild,v 1.1 2009/09/12 09:13:59 patrick Exp $
+
+inherit eutils
+
+DESCRIPTION="Portable userland implementation of Common Address Redundancy Protocol (CARP)."
+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 "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+
+ dodoc README INSTALL NEWS ChangeLog || die
+ dodoc examples/linux/vip-{up,down}.sh
+}