diff options
author | Christian Zoffoli <xmerlin@gentoo.org> | 2007-09-20 08:46:05 +0000 |
---|---|---|
committer | Christian Zoffoli <xmerlin@gentoo.org> | 2007-09-20 08:46:05 +0000 |
commit | 488fa89b76c56b1863fdc918d54172aed2bb9bf0 (patch) | |
tree | b41a11871317736b343cba3e7cb38d501e6d3566 /net-misc/ucarp | |
parent | Last rites for bk_client. MySQL herd has no further need for this package. (diff) | |
download | gentoo-2-488fa89b76c56b1863fdc918d54172aed2bb9bf0.tar.gz gentoo-2-488fa89b76c56b1863fdc918d54172aed2bb9bf0.tar.bz2 gentoo-2-488fa89b76c56b1863fdc918d54172aed2bb9bf0.zip |
Version bump.
(Portage version: 2.1.2.2)
Diffstat (limited to 'net-misc/ucarp')
-rw-r--r-- | net-misc/ucarp/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/ucarp/files/digest-ucarp-1.3 | 3 | ||||
-rw-r--r-- | net-misc/ucarp/ucarp-1.3.ebuild | 27 |
3 files changed, 36 insertions, 1 deletions
diff --git a/net-misc/ucarp/ChangeLog b/net-misc/ucarp/ChangeLog index 8daddac03f07..e4e022bb6146 100644 --- a/net-misc/ucarp/ChangeLog +++ b/net-misc/ucarp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/ucarp # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ChangeLog,v 1.11 2007/05/12 12:53:44 xmerlin Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ChangeLog,v 1.12 2007/09/20 08:46:04 xmerlin Exp $ + +*ucarp-1.3 (20 Sep 2007) + + 20 Sep 2007; Christian Zoffoli <xmerlin@gentoo.org> +ucarp-1.3.ebuild: + Version bump. 12 May 2007; Christian Zoffoli <xmerlin@gentoo.org> -ucarp-0.7.ebuild, -ucarp-1.1.ebuild, ucarp-1.2.ebuild: diff --git a/net-misc/ucarp/files/digest-ucarp-1.3 b/net-misc/ucarp/files/digest-ucarp-1.3 new file mode 100644 index 000000000000..715ed76055c4 --- /dev/null +++ b/net-misc/ucarp/files/digest-ucarp-1.3 @@ -0,0 +1,3 @@ +MD5 332deb4d01592ce2e1f5d2aba887332a ucarp-1.3.tar.gz 226575 +RMD160 6bccf64f633bbcae4eed195141ad3a9a2f92a481 ucarp-1.3.tar.gz 226575 +SHA256 c295479da930cf5627ac0d6af45dac3934fa7633f40c163a86b1fd28feb93aba ucarp-1.3.tar.gz 226575 diff --git a/net-misc/ucarp/ucarp-1.3.ebuild b/net-misc/ucarp/ucarp-1.3.ebuild new file mode 100644 index 000000000000..4969f9f18f43 --- /dev/null +++ b/net-misc/ucarp/ucarp-1.3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ucarp-1.3.ebuild,v 1.1 2007/09/20 08:46:04 xmerlin 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 + emake || die "emake failed" +} + +src_install() { + emake DESTDIR=${D} install || die + + dodoc README INSTALL NEWS ChangeLog || die + dodoc examples/linux/vip-up.sh examples/linux/vip-down.sh +} |