diff options
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/Manifest.gz | bin | 43067 -> 42908 bytes | |||
-rw-r--r-- | net-analyzer/netio/Manifest | 3 | ||||
-rw-r--r-- | net-analyzer/netio/metadata.xml | 8 | ||||
-rw-r--r-- | net-analyzer/netio/netio-1.33.ebuild | 42 |
4 files changed, 0 insertions, 53 deletions
diff --git a/net-analyzer/Manifest.gz b/net-analyzer/Manifest.gz Binary files differindex f00fa1a6983b..c32339222220 100644 --- a/net-analyzer/Manifest.gz +++ b/net-analyzer/Manifest.gz diff --git a/net-analyzer/netio/Manifest b/net-analyzer/netio/Manifest deleted file mode 100644 index 09564c4a1bf6..000000000000 --- a/net-analyzer/netio/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST netio133.zip 235931 BLAKE2B e664700b5991e38ad056333b13ba6ec40efd2a9a496dd9235ad40482b281f21ca54f49e037a0155d3ca0b1d77bd54330462d08abe5f809c6ee337b672c979995 SHA512 79a4d8ad5a5d9750a19bf7f8f4cc762e6d1a866a63138bfc1cf8614057eb8ade147817e489f93210990ce9d82be03a5053821663212fbee71c4cd46c2f9c9232 -EBUILD netio-1.33.ebuild 794 BLAKE2B 9dba23df302452f7b13db0bf9f9c4e9bcdc5fd09128bc52f96fb452fccc2947b572dd2c27ccc7b56d0af638edac42fdcdb8ddb2aaad69bd8e2267c59defd6860 SHA512 608678e641aed4f6989c5971ac37fe546c8822268c08a4ea693e5d8d884c9ddfcf075d974d79cd6c4ff8d1be27f20803a1b90b4af0b6967ad6565a0a40cd5c0d -MISC metadata.xml 277 BLAKE2B 57fc90092c4674e5c4dfe38b0d79c983990fce4e8208b70c2ebb218aebb6d2135537f927115f3a7b7eb8c1ddb596461c17e60acb3e6a11b289796f20f3c80a33 SHA512 5ac67e6beabab60f83ac521249c6d1f021988d522fc86ab12ec98fbaa9d47a50157c10c7b9a39554e66a02b141cdc6dc6669e5e7c9c02c8b36ad404aa790d619 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 -} |