jer 14/06/24 02:30:03 Modified: ChangeLog alive-2.0.2.ebuild Log: Drop fatal ping args check (bug #514760). (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Revision Changes Path 1.3 net-analyzer/alive/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/alive/ChangeLog?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/alive/ChangeLog?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/alive/ChangeLog?r1=1.2&r2=1.3 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-analyzer/alive/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ChangeLog 5 Oct 2013 16:29:13 -0000 1.2 +++ ChangeLog 24 Jun 2014 02:30:03 -0000 1.3 @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/alive -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/alive/ChangeLog,v 1.2 2013/10/05 16:29:13 jer Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/alive/ChangeLog,v 1.3 2014/06/24 02:30:03 jer Exp $ + + 24 Jun 2014; Jeroen Roovers <[email protected]> alive-2.0.2.ebuild, + +files/alive-2.0.2-ping-test.patch: + Drop fatal ping args check (bug #514760). *alive-2.0.2 (05 Oct 2013) 1.2 net-analyzer/alive/alive-2.0.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/alive/alive-2.0.2.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/alive/alive-2.0.2.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/alive/alive-2.0.2.ebuild?r1=1.1&r2=1.2 Index: alive-2.0.2.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-analyzer/alive/alive-2.0.2.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- alive-2.0.2.ebuild 5 Oct 2013 16:29:13 -0000 1.1 +++ alive-2.0.2.ebuild 24 Jun 2014 02:30:03 -0000 1.2 @@ -1,8 +1,9 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/alive/alive-2.0.2.ebuild,v 1.1 2013/10/05 16:29:13 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/alive/alive-2.0.2.ebuild,v 1.2 2014/06/24 02:30:03 jer Exp $ EAPI=5 +inherit autotools eutils DESCRIPTION="a periodic ping program" HOMEPAGE="http://www.gnu.org/software/alive/" @@ -13,8 +14,17 @@ KEYWORDS="~amd64 ~hppa ~x86" IUSE="" -DEPEND="app-arch/xz-utils" +COMMON_DEPEND="net-misc/iputils" +DEPEND=" + app-arch/xz-utils + ${COMMON_DEPEND} +" RDEPEND=" dev-scheme/guile - net-misc/iputils + ${COMMON_DEPEND} " + +src_prepare() { + epatch "${FILESDIR}"/${P}-ping-test.patch + eautoreconf +}
