summaryrefslogtreecommitdiff
path: root/net-analyzer/fping/fping-2.4_beta2_p161-r2.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-12-14 13:26:14 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-12-14 13:26:14 +0000
commit6abbf81ef2f298e3221ff5e67a1f3c5f23958212 (patch)
tree25413d1cb3a0cbfe36029db32398c0f333609215 /net-analyzer/fping/fping-2.4_beta2_p161-r2.ebuild
parent9c417bacd51da6d8b57fa9f37425161d30d4b95b (diff)
gentoo resync : 14.12.2020
Diffstat (limited to 'net-analyzer/fping/fping-2.4_beta2_p161-r2.ebuild')
-rw-r--r--net-analyzer/fping/fping-2.4_beta2_p161-r2.ebuild60
1 files changed, 0 insertions, 60 deletions
diff --git a/net-analyzer/fping/fping-2.4_beta2_p161-r2.ebuild b/net-analyzer/fping/fping-2.4_beta2_p161-r2.ebuild
deleted file mode 100644
index 23e248eb31f2..000000000000
--- a/net-analyzer/fping/fping-2.4_beta2_p161-r2.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-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/ https://packages.qa.debian.org/f/fping.html"
-
-SLOT="0"
-LICENSE="fping"
-KEYWORDS="~alpha amd64 hppa ~ia64 ppc ppc64 sparc x86 ~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}-err.h.patch \
- "${FILESDIR}"/${P}-min-time.patch
- eautoreconf
-
- if use ipv6; then
- cp -a "${S}" "${S}-6"
- fi
-}
-
-src_configure() {
- econf
- if use ipv6; then
- cd "${S}-6"
- append-flags -DIPV6
- econf
- fi
-}
-
-src_compile() {
- emake
- if use ipv6; then
- cd "${S}-6"
- emake
- fi
-}
-
-src_install() {
- dosbin "${S}"/${PN}
- if use ipv6; then
- newsbin "${S}"-6/fping fping6
- fperms 4555 /usr/sbin/fping6 #241930
- fi
- fperms 4555 /usr/sbin/fping #241930
- doman fping.8
- dodoc ChangeLog README
-}