commit: 74ee0f457e833d3a60900e0cea343462d7a4f7b5
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 28 20:28:19 2025 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Aug 28 20:28:19 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74ee0f45
net-analyzer/fragroute: drop 1.2.6-r4, EAPI=7--
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-analyzer/fragroute/fragroute-1.2.6-r4.ebuild | 54 ------------------------
1 file changed, 54 deletions(-)
diff --git a/net-analyzer/fragroute/fragroute-1.2.6-r4.ebuild
b/net-analyzer/fragroute/fragroute-1.2.6-r4.ebuild
deleted file mode 100644
index 4dabe888f8a2..000000000000
--- a/net-analyzer/fragroute/fragroute-1.2.6-r4.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-MY_P="${P}-ipv6"
-inherit autotools
-
-DESCRIPTION="Testing of network intrusion detection systems, firewalls and
TCP/IP stacks"
-HOMEPAGE="https://github.com/stsi/fragroute-ipv6"
-SRC_URI="https://fragroute-ipv6.googlecode.com/files/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
-
-RDEPEND="
- >=dev-libs/libdnet-1.14-r1
- dev-libs/libevent:=
- net-libs/libpcap
-"
-DEPEND="
- ${RDEPEND}
-"
-BDEPEND="
- app-alternatives/awk
-"
-DOCS=( INSTALL README TODO )
-PATCHES=(
- "${FILESDIR}"/${P}-libdir.patch
- "${FILESDIR}"/${P}-pcap_open.patch
-)
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- default
-
- # Remove broken and old files, autotools will regen needed files
- rm *.m4 acconfig.h missing Makefile.in || die
-
- # Add missing includes
- sed -i -e "/#define IPUTIL_H/a#include <stdio.h>\n#include <stdint.h>"
iputil.h || die
-
- eautoreconf
-}
-
-src_configure() {
- econf \
- DNETINC='' \
- DNETLIB=-ldnet \
- EVENTINC='' \
- EVENTLIB=-levent \
- PCAPINC='' \
- PCAPLIB=-lpcap
-}