diff options
author | Jeroen Roovers <jer@gentoo.org> | 2014-11-02 20:20:05 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2014-11-02 20:20:05 +0000 |
commit | 06aac3e6627208a5e4c61ad8b03f9fedee9784c9 (patch) | |
tree | 9218cb213bf958d90e0f971b132a0363d4692b5d | |
parent | Add USE=seccomp to 0.2.5 branch, bug #527872 (diff) | |
download | gentoo-2-06aac3e6627208a5e4c61ad8b03f9fedee9784c9.tar.gz gentoo-2-06aac3e6627208a5e4c61ad8b03f9fedee9784c9.tar.bz2 gentoo-2-06aac3e6627208a5e4c61ad8b03f9fedee9784c9.zip |
Old.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613)
-rw-r--r-- | net-analyzer/fping/ChangeLog | 6 | ||||
-rw-r--r-- | net-analyzer/fping/fping-2.4_beta2_p161-r1.ebuild | 59 | ||||
-rw-r--r-- | net-analyzer/fping/fping-3.9.ebuild | 27 |
3 files changed, 5 insertions, 87 deletions
diff --git a/net-analyzer/fping/ChangeLog b/net-analyzer/fping/ChangeLog index 94308780055c..3b273be96c58 100644 --- a/net-analyzer/fping/ChangeLog +++ b/net-analyzer/fping/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/fping # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fping/ChangeLog,v 1.76 2014/11/02 09:02:43 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fping/ChangeLog,v 1.77 2014/11/02 20:20:05 jer Exp $ + + 02 Nov 2014; Jeroen Roovers <jer@gentoo.org> -fping-2.4_beta2_p161-r1.ebuild, + -fping-3.9.ebuild: + Old. 02 Nov 2014; Agostino Sarubbo <ago@gentoo.org> fping-2.4_beta2_p161-r2.ebuild, fping-3.10.ebuild: diff --git a/net-analyzer/fping/fping-2.4_beta2_p161-r1.ebuild b/net-analyzer/fping/fping-2.4_beta2_p161-r1.ebuild deleted file mode 100644 index a6ec2565112e..000000000000 --- a/net-analyzer/fping/fping-2.4_beta2_p161-r1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fping/fping-2.4_beta2_p161-r1.ebuild,v 1.11 2014/07/11 18:11:23 jer Exp $ - -EAPI="2" - -inherit autotools eutils flag-o-matic - -DESCRIPTION="A utility to ping multiple hosts at once" -SRC_URI=" - mirror://debian/pool/main/f/${PN}/${PN}_2.4b2-to-ipv6.orig.tar.gz - mirror://debian/pool/main/f/${PN}/${PN}_2.4b2-to-ipv6-16.1.diff.gz - " -HOMEPAGE="http://fping.sourceforge.net/ http://packages.qa.debian.org/f/fping.html" - -SLOT="0" -LICENSE="fping" -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos" -IUSE="ipv6" - -S="${WORKDIR}/fping-2.4b2_to-ipv6" - -src_prepare() { - epatch \ - "${WORKDIR}"/fping_2.4b2-to-ipv6-16.1.diff \ - "${FILESDIR}"/${P}-min-time.patch - eautoreconf - - if use ipv6; then - cp -a "${S}" "${S}-6" - fi -} - -src_configure() { - econf || die "econf failed" - if use ipv6; then - cd "${S}-6" - append-flags -DIPV6 - econf || die "econf failed" - fi -} - -src_compile() { - emake || die "econf failed" - if use ipv6; then - cd "${S}-6" - emake || die "econf failed" - fi -} - -src_install () { - dosbin "${S}"/${PN} || die "Failed to install fping." - if use ipv6; then - newsbin "${S}"-6/fping fping6 || die "Failed to install fping." - fi - fperms 4555 /usr/sbin/fping /usr/sbin/fping6 #241930 - doman fping.8 - dodoc ChangeLog README -} diff --git a/net-analyzer/fping/fping-3.9.ebuild b/net-analyzer/fping/fping-3.9.ebuild deleted file mode 100644 index 445b31b1fef8..000000000000 --- a/net-analyzer/fping/fping-3.9.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fping/fping-3.9.ebuild,v 1.7 2014/09/19 08:57:05 ago Exp $ - -EAPI=5 - -DESCRIPTION="A utility to ping multiple hosts at once" -HOMEPAGE="http://fping.org/" -SRC_URI="http://fping.org/dist/${P}.tar.gz" - -LICENSE="fping" -SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos" -IUSE="ipv6 suid" - -src_configure() { - econf $(use_enable ipv6) -} - -src_install() { - default - - if use suid ; then - fperms u+s /usr/sbin/fping - use ipv6 && fperms u+s /usr/sbin/fping6 - fi -} |