diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2010-06-26 19:29:16 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2010-06-26 19:29:16 +0000 |
commit | 886b3f80a4985013e243e3d3b000eb6b8ae8a5a8 (patch) | |
tree | a508373430d372f5b65e147491cb297f01d10916 /net-misc | |
parent | Convert to ruby-fakegem. (diff) | |
download | gentoo-2-886b3f80a4985013e243e3d3b000eb6b8ae8a5a8.tar.gz gentoo-2-886b3f80a4985013e243e3d3b000eb6b8ae8a5a8.tar.bz2 gentoo-2-886b3f80a4985013e243e3d3b000eb6b8ae8a5a8.zip |
Version bump wrt bug 307167. Thanks to Terra <gentoo.org@tech.FutureQuest.net> for reporting. Minor syntax cleaning.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/ucarp/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/ucarp/ucarp-1.2.ebuild | 6 | ||||
-rw-r--r-- | net-misc/ucarp/ucarp-1.3.ebuild | 6 | ||||
-rw-r--r-- | net-misc/ucarp/ucarp-1.5.2.ebuild | 27 |
4 files changed, 41 insertions, 7 deletions
diff --git a/net-misc/ucarp/ChangeLog b/net-misc/ucarp/ChangeLog index 6108362ad550..ca48084e5698 100644 --- a/net-misc/ucarp/ChangeLog +++ b/net-misc/ucarp/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-misc/ucarp # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ChangeLog,v 1.15 2010/03/06 20:06:06 sping Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ChangeLog,v 1.16 2010/06/26 19:29:15 xarthisius Exp $ + +*ucarp-1.5.2 (26 Jun 2010) + + 26 Jun 2010; Kacper Kowalik <xarthisius@gentoo.org> ucarp-1.2.ebuild, + ucarp-1.3.ebuild, +ucarp-1.5.2.ebuild: + Version bump wrt bug 307167. Thanks to Terra + <gentoo.org@tech.FutureQuest.net> for reporting. Minor syntax cleaning. 06 Mar 2010; Sebastian Pipping <sping@gentoo.org> metadata.xml: Fix metadata.xml (bug #307209) diff --git a/net-misc/ucarp/ucarp-1.2.ebuild b/net-misc/ucarp/ucarp-1.2.ebuild index a1377f08a523..9c3ea7c5b73d 100644 --- a/net-misc/ucarp/ucarp-1.2.ebuild +++ b/net-misc/ucarp/ucarp-1.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2010 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.3 2007/05/12 12:53:44 xmerlin Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ucarp-1.2.ebuild,v 1.4 2010/06/26 19:29:15 xarthisius Exp $ inherit eutils @@ -20,7 +20,7 @@ src_compile() { } src_install() { - emake DESTDIR=${D} install || die + emake DESTDIR="${D}" install || die dodoc README INSTALL NEWS ChangeLog || die dodoc examples/linux/vip-up.sh examples/linux/vip-down.sh diff --git a/net-misc/ucarp/ucarp-1.3.ebuild b/net-misc/ucarp/ucarp-1.3.ebuild index 4969f9f18f43..b70c68236d7d 100644 --- a/net-misc/ucarp/ucarp-1.3.ebuild +++ b/net-misc/ucarp/ucarp-1.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2010 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 $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ucarp-1.3.ebuild,v 1.2 2010/06/26 19:29:16 xarthisius Exp $ inherit eutils @@ -20,7 +20,7 @@ src_compile() { } src_install() { - emake DESTDIR=${D} install || die + emake DESTDIR="${D}" install || die dodoc README INSTALL NEWS ChangeLog || die dodoc examples/linux/vip-up.sh examples/linux/vip-down.sh diff --git a/net-misc/ucarp/ucarp-1.5.2.ebuild b/net-misc/ucarp/ucarp-1.5.2.ebuild new file mode 100644 index 000000000000..2adbca041d80 --- /dev/null +++ b/net-misc/ucarp/ucarp-1.5.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/ucarp/ucarp-1.5.2.ebuild,v 1.1 2010/06/26 19:29:16 xarthisius Exp $ + +EAPI="2" + +inherit base + +DESCRIPTION="Portable userland implementation of Common Address Redundancy Protocol (CARP)." +HOMEPAGE="http://www.ucarp.org" +SRC_URI="ftp://ftp.ucarp.org/pub/ucarp/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="nls" + +RDEPEND="virtual/libpcap" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" + +DOCS=( "README" "NEWS" "AUTHORS" "ChangeLog" + "examples/linux/vip-up.sh" "examples/linux/vip-down.sh" ) + +src_configure() { + econf $(use_enable nls) +} |