summaryrefslogtreecommitdiff
path: root/net-analyzer/sniffit
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /net-analyzer/sniffit
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'net-analyzer/sniffit')
-rw-r--r--net-analyzer/sniffit/Manifest2
-rw-r--r--net-analyzer/sniffit/files/sniffit-0.4.0-tinfo.patch12
-rw-r--r--net-analyzer/sniffit/files/sniffit-0.5.0-implicit-func-decl.patch50
-rw-r--r--net-analyzer/sniffit/files/sniffit-0.6-tinfo.patch12
-rw-r--r--net-analyzer/sniffit/metadata.xml11
-rw-r--r--net-analyzer/sniffit/sniffit-0.5-r1.ebuild31
-rw-r--r--net-analyzer/sniffit/sniffit-0.6_p20240924.ebuild44
7 files changed, 0 insertions, 162 deletions
diff --git a/net-analyzer/sniffit/Manifest b/net-analyzer/sniffit/Manifest
deleted file mode 100644
index 605011094631..000000000000
--- a/net-analyzer/sniffit/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST sniffit-0.5.tar.gz 60074 BLAKE2B 55d2a65da3801cab4e612a8d1a1770c00abfa44555779ee29dc7358d9636e0b2a3f1e291bc64234588089967510bff99f5a9831d8acc01dacb080d7341081372 SHA512 cf6f4a1d396d47e0fa51cb527e8f64cc4f9af5f83121728ce6cbfb6a11509899e52a6c01f0dd20b0d3b92a567991390d9a616151c9496d4f2d764608ef3542bc
-DIST sniffit-0.6_p20240924.tar.gz 59838 BLAKE2B 4cb051e6ec3682652c40dff65238887c8bc29211acaf5934295e0d5393de1e7a7ebb0931ac0506eeb160066f427bd4081d7a82c9f993e1d6caddbe30e8bbf0ef SHA512 b6f7138051fbd13446d77eedbd1ba25f0fbfc098bbebbc27afc3218840713b633c6a7dafc6504e7cb77252c364cc5c49855ac788c1211830042efec01daadcb7
diff --git a/net-analyzer/sniffit/files/sniffit-0.4.0-tinfo.patch b/net-analyzer/sniffit/files/sniffit-0.4.0-tinfo.patch
deleted file mode 100644
index 85e266fb5d13..000000000000
--- a/net-analyzer/sniffit/files/sniffit-0.4.0-tinfo.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -12,7 +12,8 @@
- AC_PROG_CC
-
- # Checks for libraries.
--AC_CHECK_LIB(ncurses, main, , [AC_MSG_ERROR([Couldn't find libncurses])])
-+AC_CHECK_LIB(ncurses, initscr, , [AC_MSG_ERROR([Couldn't find libncurses])])
-+AC_SEARCH_LIBS(keypad, tinfo, , [AC_MSG_ERROR([Couldn't find libncurses])])
- AC_CHECK_LIB(pcap, pcap_open_live, , [AC_MSG_ERROR([Couldn't find libpcap])])
-
- # Checks for header files.
diff --git a/net-analyzer/sniffit/files/sniffit-0.5.0-implicit-func-decl.patch b/net-analyzer/sniffit/files/sniffit-0.5.0-implicit-func-decl.patch
deleted file mode 100644
index e6ee580d6e33..000000000000
--- a/net-analyzer/sniffit/files/sniffit-0.5.0-implicit-func-decl.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-https://github.com/resurrecting-open-source-projects/sniffit/pull/3
-
-From a05340968343d9f61f57506ed00bff0a62d3f38e Mon Sep 17 00:00:00 2001
-From: Sam James <sam@gentoo.org>
-Date: Thu, 28 Jul 2022 12:14:44 +0100
-Subject: [PATCH] Fix -Wimplicit-function-declaration
-
---- a/src/sn_cfgfile.c
-+++ b/src/sn_cfgfile.c
-@@ -2,6 +2,7 @@
- /* - by : Brecht Claerhout */
- /* - improvements: Shudoh Kazuyuki */
-
-+#include <ctype.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
---- a/src/sn_generation.c
-+++ b/src/sn_generation.c
-@@ -13,7 +13,9 @@
- #include "sn_curses.h"
- #include "sn_defines.h"
- #include "sn_structs.h"
-+#include "sn_packets.h"
- #include "sn_generation.h"
-+#include "sn_interface.h"
-
- extern volatile int screen_busy;
-
---- a/src/sn_interface.c
-+++ b/src/sn_interface.c
-@@ -4,6 +4,7 @@
- #include "sn_config.h"
-
- #ifdef INCLUDE_INTERFACE
-+#include <ctype.h>
- #include <signal.h>
- #include <termios.h>
- #include <stdlib.h>
---- a/src/sniffit.c
-+++ b/src/sniffit.c
-@@ -3,6 +3,7 @@
-
- #include "sn_config.h" /* Config header file */
-
-+#include <ctype.h>
- #include <unistd.h>
- #include <signal.h>
- #include <stdlib.h>
-
diff --git a/net-analyzer/sniffit/files/sniffit-0.6-tinfo.patch b/net-analyzer/sniffit/files/sniffit-0.6-tinfo.patch
deleted file mode 100644
index 960aaf853013..000000000000
--- a/net-analyzer/sniffit/files/sniffit-0.6-tinfo.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -16,7 +16,8 @@ AC_PROG_CC
- # not use it because src/sn_config.h does not define INCLUDE_INTERFACE because
- # other conditions are not met. It would be better to move that logic entirely
- # to Autoconf and to define (or not) INCLUDE_INTERFACE only here.
--AC_CHECK_LIB(ncurses, initscr)
-+AC_CHECK_LIB(ncurses, initscr, , [AC_MSG_ERROR([Couldn't find libncurses])])
-+AC_SEARCH_LIBS(keypad, tinfo, , [AC_MSG_ERROR([Couldn't find libncurses])])
- AC_CHECK_LIB(pcap, pcap_open_live, , [AC_MSG_ERROR([Couldn't find libpcap])])
-
- # Checks for header files.
diff --git a/net-analyzer/sniffit/metadata.xml b/net-analyzer/sniffit/metadata.xml
deleted file mode 100644
index b1b6918e47b0..000000000000
--- a/net-analyzer/sniffit/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="github">resurrecting-open-source-projects/sniffit</remote-id>
-</upstream>
-</pkgmetadata>
diff --git a/net-analyzer/sniffit/sniffit-0.5-r1.ebuild b/net-analyzer/sniffit/sniffit-0.5-r1.ebuild
deleted file mode 100644
index 82d9af795416..000000000000
--- a/net-analyzer/sniffit/sniffit-0.5-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="Interactive Packet Sniffer"
-HOMEPAGE="https://github.com/resurrecting-open-source-projects/sniffit"
-SRC_URI="https://github.com/resurrecting-open-source-projects/sniffit/archive/${P}.tar.gz"
-S="${WORKDIR}"/${PN}-${P}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc ~sparc x86"
-
-RDEPEND="
- net-libs/libpcap
- >=sys-libs/ncurses-5.2
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.4.0-tinfo.patch
- "${FILESDIR}"/${PN}-0.5.0-implicit-func-decl.patch
-)
-
-src_prepare() {
- default
- eautoreconf
-}
diff --git a/net-analyzer/sniffit/sniffit-0.6_p20240924.ebuild b/net-analyzer/sniffit/sniffit-0.6_p20240924.ebuild
deleted file mode 100644
index 3fa08752362b..000000000000
--- a/net-analyzer/sniffit/sniffit-0.6_p20240924.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools flag-o-matic
-
-DESCRIPTION="Interactive Packet Sniffer"
-HOMEPAGE="https://github.com/resurrecting-open-source-projects/sniffit"
-
-if [[ ${PV} == *_p* ]] ; then
- SNIFFIT_COMMIT="22ab988654fa113fcc291844029a9b3889e5c84c"
- SRC_URI="https://github.com/resurrecting-open-source-projects/sniffit/archive/${SNIFFIT_COMMIT}.tar.gz -> ${P}.tar.gz"
- S="${WORKDIR}"/${PN}-${SNIFFIT_COMMIT}
-else
- SRC_URI="https://github.com/resurrecting-open-source-projects/sniffit/archive/${P}.tar.gz"
- S="${WORKDIR}"/${PN}-${P}
-fi
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc ~sparc x86"
-
-RDEPEND="
- net-libs/libpcap
- >=sys-libs/ncurses-5.2:=
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.6-tinfo.patch
-)
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- # bug #877295
- append-flags -std=gnu89
-
- econf
-}