summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2022-12-20 14:56:37 +0100
committerJakov Smolić <jsmolic@gentoo.org>2022-12-20 15:25:31 +0100
commiteedca14b85f6f509759cb54879f1af517204196c (patch)
tree18642629b1ba86a446109075762d9a1e068befd5 /net-analyzer
parentnet-analyzer/egressor: treeclean (diff)
downloadgentoo-eedca14b85f6f509759cb54879f1af517204196c.tar.gz
gentoo-eedca14b85f6f509759cb54879f1af517204196c.tar.bz2
gentoo-eedca14b85f6f509759cb54879f1af517204196c.zip
net-analyzer/angst: treeclean
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/angst/Manifest1
-rw-r--r--net-analyzer/angst/angst-0.4b-r3.ebuild46
-rw-r--r--net-analyzer/angst/files/0.4b-flags.patch20
-rw-r--r--net-analyzer/angst/files/0.4b-libnet-1.0.patch12
-rw-r--r--net-analyzer/angst/files/0.4b-sysctl.h.patch12
-rw-r--r--net-analyzer/angst/metadata.xml11
6 files changed, 0 insertions, 102 deletions
diff --git a/net-analyzer/angst/Manifest b/net-analyzer/angst/Manifest
deleted file mode 100644
index 7b9db686f0fe..000000000000
--- a/net-analyzer/angst/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST angst-0.4b.tar.gz 13909 BLAKE2B f08b9e489eaec5e2006ad8d84dc7586c6fb57c3d8585fb5cd769591ed56f4e5a4c2e0bdaf0ba02b40370ea99146ebfa02611d64b043949b27f6dfcbbdd2b16e5 SHA512 5584b1dd01d781cd34b594fcc8970764874599a1f15b1185066ee21c11cde23af148270c178d6a0b3436d71955aaf1cd904703f9dfb0c75d0b70c04d394fb449
diff --git a/net-analyzer/angst/angst-0.4b-r3.ebuild b/net-analyzer/angst/angst-0.4b-r3.ebuild
deleted file mode 100644
index 42a093440109..000000000000
--- a/net-analyzer/angst/angst-0.4b-r3.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="an active sniffer that provides methods for aggressive sniffing on switched LANs"
-HOMEPAGE="http://angst.sourceforge.net/"
-SRC_URI="http://angst.sourceforge.net/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
-IUSE="debug"
-
-DEPEND="
- net-libs/libpcap
- net-libs/libnet:1.0
-"
-RDEPEND="
- ${DEPEND}
-"
-PATCHES=(
- "${FILESDIR}"/${PV}-flags.patch
- "${FILESDIR}"/${PV}-libnet-1.0.patch
- "${FILESDIR}"/${PV}-sysctl.h.patch
-)
-
-src_configure() {
- append-cflags -fcommon
- use debug && append-cppflags -DDEBUG
-}
-
-src_compile() {
- emake \
- CFLAGS="${CFLAGS}" \
- LDFLAGS="${LDFLAGS}" \
- CC="$(tc-getCC)" \
- -f Makefile.linux
-}
-
-src_install() {
- dosbin angst
- doman angst.8
- dodoc README TODO ChangeLog
-}
diff --git a/net-analyzer/angst/files/0.4b-flags.patch b/net-analyzer/angst/files/0.4b-flags.patch
deleted file mode 100644
index 1021faa5b539..000000000000
--- a/net-analyzer/angst/files/0.4b-flags.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/Makefile.linux
-+++ b/Makefile.linux
-@@ -5,7 +5,7 @@
- #
- # $Id: Makefile.linux,v 1.6 2001/02/08 13:44:12 argp Exp $
-
--CC = gcc
-+CC ?= gcc
- INSTALL_DIR = /usr/bin/install -c -o root -g bin
- INSTALL_SBIN = /usr/bin/install -c -s -o root -g bin -m 555
- INSTALL_MAN = /usr/bin/install -c -o root -g bin -m 444
-@@ -21,7 +21,7 @@
- all: angst
-
- angst: $(OBJS)
-- $(CC) $(CFLAGS) -o angst $(DEFINE) $(OBJS) $(INCLUDE) $(LIBS)
-+ $(CC) $(CFLAGS) -o angst $(DEFINE) $(LDFLAGS) $(OBJS) $(INCLUDE) $(LIBS)
-
- clean:
- rm -f angst *.o missing/*.o *.core core
diff --git a/net-analyzer/angst/files/0.4b-libnet-1.0.patch b/net-analyzer/angst/files/0.4b-libnet-1.0.patch
deleted file mode 100644
index a2bcf1a18696..000000000000
--- a/net-analyzer/angst/files/0.4b-libnet-1.0.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/Makefile.linux
-+++ b/Makefile.linux
-@@ -14,2 +14,2 @@
--LIBS = -L/usr/local/lib `libnet-config --libs` -lpcap
--DEFINE = `libnet-config --defines` -DLINUX #-DDEBUG
-+LIBS = -L/usr/local/lib `libnet-1.0-config --libs` -lpcap
-+DEFINE = `libnet-1.0-config --defines` -DLINUX #-DDEBUG
---- a/angst.h
-+++ b/angst.h
-@@ -12 +12 @@
--#include <libnet.h>
-+#include <libnet-1.0.h>
diff --git a/net-analyzer/angst/files/0.4b-sysctl.h.patch b/net-analyzer/angst/files/0.4b-sysctl.h.patch
deleted file mode 100644
index 16d8b53b6a3f..000000000000
--- a/net-analyzer/angst/files/0.4b-sysctl.h.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- angst.h
-+++ b/angst.h
-@@ -8,7 +8,9 @@
-
- #include <stdarg.h>
- #include <sys/param.h>
-+#ifndef LINUX
- #include <sys/sysctl.h>
-+#endif
- #include <libnet-1.0.h>
- #include <pcap.h>
-
diff --git a/net-analyzer/angst/metadata.xml b/net-analyzer/angst/metadata.xml
deleted file mode 100644
index f36942917258..000000000000
--- a/net-analyzer/angst/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">angst</remote-id>
- </upstream>
-</pkgmetadata>