summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2023-04-30 12:06:07 +0200
committerDavid Seifert <soap@gentoo.org>2023-04-30 12:06:07 +0200
commit3ba27fcc4dfa27d6d0f91c002e29032dd1b9e288 (patch)
tree5a4b2d09a2cc7b92f043d168cf5250c7a60bb3db /net-analyzer
parentgames-rpg/coe2: treeclean (diff)
downloadgentoo-3ba27fcc4dfa27d6d0f91c002e29032dd1b9e288.tar.gz
gentoo-3ba27fcc4dfa27d6d0f91c002e29032dd1b9e288.tar.bz2
gentoo-3ba27fcc4dfa27d6d0f91c002e29032dd1b9e288.zip
net-analyzer/netio: treeclean
Closes: https://bugs.gentoo.org/831304 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/netio/Manifest1
-rw-r--r--net-analyzer/netio/metadata.xml8
-rw-r--r--net-analyzer/netio/netio-1.33.ebuild42
3 files changed, 0 insertions, 51 deletions
diff --git a/net-analyzer/netio/Manifest b/net-analyzer/netio/Manifest
deleted file mode 100644
index ce1f69c9ca3a..000000000000
--- a/net-analyzer/netio/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST netio133.zip 235931 BLAKE2B e664700b5991e38ad056333b13ba6ec40efd2a9a496dd9235ad40482b281f21ca54f49e037a0155d3ca0b1d77bd54330462d08abe5f809c6ee337b672c979995 SHA512 79a4d8ad5a5d9750a19bf7f8f4cc762e6d1a866a63138bfc1cf8614057eb8ade147817e489f93210990ce9d82be03a5053821663212fbee71c4cd46c2f9c9232
diff --git a/net-analyzer/netio/metadata.xml b/net-analyzer/netio/metadata.xml
deleted file mode 100644
index dce3f3be66c0..000000000000
--- a/net-analyzer/netio/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>netmon@gentoo.org</email>
- <name>Gentoo network monitoring and analysis project</name>
-</maintainer>
-</pkgmetadata>
diff --git a/net-analyzer/netio/netio-1.33.ebuild b/net-analyzer/netio/netio-1.33.ebuild
deleted file mode 100644
index b4f396af8c4d..000000000000
--- a/net-analyzer/netio/netio-1.33.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit edos2unix toolchain-funcs
-
-DESCRIPTION="Network benchmark using TCP and UDP protocols"
-HOMEPAGE="https://web.ars.de/netio/"
-SRC_URI="https://www.ars.de/${PN}${PV/.}.zip"
-S="${WORKDIR}"
-
-LICENSE="free-noncomm"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
-RESTRICT="mirror" # bug #391789 comment #1
-
-BDEPEND="app-arch/unzip"
-
-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
-}