diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
| commit | 290aebdea65a02557706eaeda477fef0437b6a48 (patch) | |
| tree | f87a939169a508a2e943570501b64cc16b411cda /net-analyzer/sniffit | |
| parent | 6783ddcd4b73d9ce586a71770caed352bec93b16 (diff) | |
| download | baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip | |
Adding metadata
Diffstat (limited to 'net-analyzer/sniffit')
| -rw-r--r-- | net-analyzer/sniffit/Manifest | 2 | ||||
| -rw-r--r-- | net-analyzer/sniffit/files/sniffit-0.4.0-tinfo.patch | 12 | ||||
| -rw-r--r-- | net-analyzer/sniffit/files/sniffit-0.5.0-implicit-func-decl.patch | 50 | ||||
| -rw-r--r-- | net-analyzer/sniffit/files/sniffit-0.6-tinfo.patch | 12 | ||||
| -rw-r--r-- | net-analyzer/sniffit/metadata.xml | 9 | ||||
| -rw-r--r-- | net-analyzer/sniffit/sniffit-0.5-r1.ebuild | 31 | ||||
| -rw-r--r-- | net-analyzer/sniffit/sniffit-0.6_p20240924.ebuild | 44 |
7 files changed, 0 insertions, 160 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 def7802554eb..000000000000 --- a/net-analyzer/sniffit/metadata.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>netmon@gentoo.org</email> - <name>Gentoo network monitoring and analysis project</name> - </maintainer> - <origin>baldeagleos-repo</origin> -</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 -} |
