diff options
author | Sam James <sam@gentoo.org> | 2021-03-16 16:44:15 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-16 19:21:50 +0000 |
commit | a5765fc41312f0a32f3ee78f2bc994f8e3b2991c (patch) | |
tree | 6fa81454ce946db0cac06c9a6f2ad67a59d31d40 /net-analyzer/netio | |
parent | net-analyzer/nethogs: drop 0.8.5-r1 (diff) | |
download | gentoo-a5765fc41312f0a32f3ee78f2bc994f8e3b2991c.tar.gz gentoo-a5765fc41312f0a32f3ee78f2bc994f8e3b2991c.tar.bz2 gentoo-a5765fc41312f0a32f3ee78f2bc994f8e3b2991c.zip |
net-analyzer/netio: drop 1.32-r1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer/netio')
-rw-r--r-- | net-analyzer/netio/Manifest | 1 | ||||
-rw-r--r-- | net-analyzer/netio/files/netio-1.26-linux-include.patch | 10 | ||||
-rw-r--r-- | net-analyzer/netio/netio-1.32-r1.ebuild | 48 |
3 files changed, 0 insertions, 59 deletions
diff --git a/net-analyzer/netio/Manifest b/net-analyzer/netio/Manifest index ade3fa30d715..ce1f69c9ca3a 100644 --- a/net-analyzer/netio/Manifest +++ b/net-analyzer/netio/Manifest @@ -1,2 +1 @@ -DIST netio132.zip 162484 BLAKE2B 921b28d25a8042b5567393b088fbede3f8bff2d4bf6c8afcaab03a76487ddc48e6cd640b2cbe7114b022cacef9fcf5ccc3deaa9eed2b648898d7f2dfb40e133c SHA512 3473b6b41c4a1e054fa0eb3316bc16e799034b4b9402c7751f29724d8ec70c674d3de59140fdbdc301c53f2a24b44d58e8cd50a68f107bd892b1d17b6e695232 DIST netio133.zip 235931 BLAKE2B e664700b5991e38ad056333b13ba6ec40efd2a9a496dd9235ad40482b281f21ca54f49e037a0155d3ca0b1d77bd54330462d08abe5f809c6ee337b672c979995 SHA512 79a4d8ad5a5d9750a19bf7f8f4cc762e6d1a866a63138bfc1cf8614057eb8ade147817e489f93210990ce9d82be03a5053821663212fbee71c4cd46c2f9c9232 diff --git a/net-analyzer/netio/files/netio-1.26-linux-include.patch b/net-analyzer/netio/files/netio-1.26-linux-include.patch deleted file mode 100644 index 591cae323842..000000000000 --- a/net-analyzer/netio/files/netio-1.26-linux-include.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/netio.c -+++ b/netio.c -@@ -199,6 +199,7 @@ - #include <sys/time.h> - #include <time.h> - #include <netinet/in.h> -+#include <arpa/inet.h> - #include <netdb.h> - - #define psock_errno(x) perror(x) diff --git a/net-analyzer/netio/netio-1.32-r1.ebuild b/net-analyzer/netio/netio-1.32-r1.ebuild deleted file mode 100644 index a2016af62465..000000000000 --- a/net-analyzer/netio/netio-1.32-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit eutils toolchain-funcs - -DESCRIPTION="measures net throughput with NetBIOS and TCP/IP protocols" -HOMEPAGE="https://web.ars.de/netio/" -SRC_URI="http://web.ars.de/wp-content/uploads/2017/04/${PN}${PV/./}.zip" - -LICENSE="free-noncomm" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" -RESTRICT="mirror" # bug #391789 comment #1 - -DEPEND=" - app-arch/unzip - >=sys-apps/sed-4 -" - -S="${WORKDIR}" -PATCHES=( - "${FILESDIR}"/${PN}-1.26-linux-include.patch -) - -src_prepare() { - edos2unix *.c *.h *.doc - - default - - sed -i \ - -e "s|LFLAGS=\"\"|LFLAGS?=\"${LDFLAGS}\"|g" \ - -e 's|\(CC\)=|\1?=|g' \ - -e 's|\(CFLAGS\)=|\1+=|g' \ - Makefile || die -} - -src_compile() { - emake \ - CC="$(tc-getCC)" \ - CFLAGS="${CFLAGS}" \ - linux -} - -src_install() { - dobin netio - dodoc netio.doc -} |