summaryrefslogtreecommitdiff
path: root/net-analyzer/netwox
diff options
context:
space:
mode:
Diffstat (limited to 'net-analyzer/netwox')
-rw-r--r--net-analyzer/netwox/Manifest4
-rw-r--r--net-analyzer/netwox/metadata.xml11
-rw-r--r--net-analyzer/netwox/netwox-5.39.0.ebuild66
3 files changed, 0 insertions, 81 deletions
diff --git a/net-analyzer/netwox/Manifest b/net-analyzer/netwox/Manifest
deleted file mode 100644
index 79a223371e69..000000000000
--- a/net-analyzer/netwox/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-DIST netwox-5.39.0-doc_html.tgz 146301 BLAKE2B 5d65cce6dc36f7fb682a7ab3d51b04366a9e43541837a07ff82e7dba29367adad92fcefcd68eb68a7f30c36adbce7765ee0cbd1d77a6a873a53c0b03ee9f0f1c SHA512 1bb6c87f2aeea8b10e9bec0725ed82b21c41290d2f2626024b13525fd92596e7aa9f91788d966a51900c0e1b346ac9fb30000344fa5b1450fe9ceb724df4be56
-DIST netwox-5.39.0-src.tgz 771942 BLAKE2B f6115e799404f420fdcee4551b78f3aeb5a3db5b5d528425fd4a68f0a5509bcace2f7d66cbbd56ae380d466425791b0a0b74325967dc2248ba25b1b55b70438b SHA512 3781c1c860d1545c269b27a702c59f1cb6b12af2e66fb3cbe776f3e085681a75ed3096d64cfdf92f65eff7213ceaab474b7e15c169c12e2c05220790ce337e37
-EBUILD netwox-5.39.0.ebuild 1366 BLAKE2B 1bd1f70c29bae5ddc3a5702186cf35dc42b0e70b2559ac043538b275843685fb50bd2ce077a8e32f134a22496290012be2c911584ef54a5b243e592700506f53 SHA512 003a77b5e6a5b22ba99cde65bf8a273395d2c4010ed4481e77b2ffbe985127a24ac7866f59ac793143ed1b78f1f055313daee871e674f4c2b128fa95f0c24ee7
-MISC metadata.xml 356 BLAKE2B 34b7236335087ccc334049d7adc026384a4cd79b2a0e32f55fd3a09a4b2f3a310d68795577526c53e05a575b3181f77a31dd09e458d9968afd00056ebfd530c8 SHA512 46b81eed56ff267c554358e230319b41731541bd3f7a08db362127bd4ceb64cd251278ce36ac7045a7c9529f1a6ac1c2b7fb660b5ebb7de90440d4cda9b78772
diff --git a/net-analyzer/netwox/metadata.xml b/net-analyzer/netwox/metadata.xml
deleted file mode 100644
index f7d28fa77de0..000000000000
--- a/net-analyzer/netwox/metadata.xml
+++ /dev/null
@@ -1,11 +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>
- <upstream>
- <remote-id type="sourceforge">ntwox</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/net-analyzer/netwox/netwox-5.39.0.ebuild b/net-analyzer/netwox/netwox-5.39.0.ebuild
deleted file mode 100644
index 60405d17bda4..000000000000
--- a/net-analyzer/netwox/netwox-5.39.0.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# NOTE: netwib, netwox and netwag go together, bump all or bump none
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Toolbox of 217 utilities for testing Ethernet/IP networks"
-HOMEPAGE="
- http://ntwox.sourceforge.net/
- http://www.laurentconstantin.com/en/netw/netwox/
-"
-SRC_URI="mirror://sourceforge/ntwox/${P}-src.tgz
- doc? ( mirror://sourceforge/ntwox/${P}-doc_html.tgz )"
-S="${WORKDIR}"/${P}-src/src
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc x86"
-IUSE="doc"
-
-DEPEND="
- net-libs/libnet:1.1
- net-libs/libpcap
- ~net-libs/netwib-${PV}
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- default
-
- sed -i \
- -e 's:/man$:/share/man:g' \
- -e "s:/lib:/$(get_libdir):" \
- -e "s:/usr/local:/usr:" \
- -e "s:=ar:=$(tc-getAR):" \
- -e "s:=ranlib:=$(tc-getRANLIB):" \
- -e "s:=gcc:=$(tc-getCC):" \
- -e "s:-O2:${CFLAGS}:" \
- config.dat || die
- sed -i \
- -e "s:-o netwox:& \${LDFLAGS}:g" \
- -e 's: ; make: ; \\$(MAKE):g' \
- genemake || die
-}
-
-src_configure() {
- sh genemake || die
-}
-
-DOCS=(
- "${WORKDIR}"/${P}-src/README.TXT
- "${WORKDIR}"/${P}-src/doc/{changelog.txt,credits.txt}
- "${WORKDIR}"/${P}-src/doc/{problemreport.txt,problemusageunix.txt,todo.txt}
-)
-
-src_install() {
- default
-
- if use doc ; then
- docinto html
- dodoc -r "${WORKDIR}"/${P}-doc_html/*
- fi
-}