summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2020-11-27 09:43:47 -0500
committerAaron Bauman <bman@gentoo.org>2020-11-27 09:43:47 -0500
commit2a6872dc433aaa95f4a0e93e70885f755aa07bdf (patch)
treeb818e0b7cba67368728d9a417ebada03f285b7cd /net-analyzer
parentnet-analyzer/thcrut: drop old (diff)
downloadgentoo-2a6872dc433aaa95f4a0e93e70885f755aa07bdf.tar.gz
gentoo-2a6872dc433aaa95f4a0e93e70885f755aa07bdf.tar.bz2
gentoo-2a6872dc433aaa95f4a0e93e70885f755aa07bdf.zip
net-analyzer/yersinia: drop old
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/yersinia/Manifest1
-rw-r--r--net-analyzer/yersinia/yersinia-0.7.3.ebuild53
2 files changed, 0 insertions, 54 deletions
diff --git a/net-analyzer/yersinia/Manifest b/net-analyzer/yersinia/Manifest
index 3795e6db1ced..36a60ac06592 100644
--- a/net-analyzer/yersinia/Manifest
+++ b/net-analyzer/yersinia/Manifest
@@ -1,2 +1 @@
-DIST yersinia-0.7.3.tar.gz 378124 BLAKE2B 032015045cd5683c8853504bd821ebb3decbeaeea933a14983eec6498de33db79771ddeb08934c6ddf82db620aba89c84ac8c369af25e7bc19d820395ba68b57 SHA512 60a1b58e6d76448e9332656645b468a6aa66afa0f45ea4b70a929651194a294b9b559bbe5fbacaeb475126e7ac248cd97c29f3177e5080286b2f551f1400d339
DIST yersinia-0.8.2.tar.gz 387889 BLAKE2B 67fe92b9cd1253874c61fa38c8e89e023f7d0ec3b83fe3001b5bc203d4033e36cb94b453ed56426b34d942036a143bd135f247466425337478f292797a433652 SHA512 2c7c89f19b6791150c472a6066b6ffaf9ac5b3d1a3d2e6a27f91293bba9a0f72d147266731e5e2670e4bf7e67ccf04b6e353071ca42d3d281b25126c9bfcb1dd
diff --git a/net-analyzer/yersinia/yersinia-0.7.3.ebuild b/net-analyzer/yersinia/yersinia-0.7.3.ebuild
deleted file mode 100644
index bc346d8cf0d3..000000000000
--- a/net-analyzer/yersinia/yersinia-0.7.3.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils
-
-DESCRIPTION="A layer 2 attack framework"
-HOMEPAGE="http://www.yersinia.net/"
-SRC_URI="http://www.yersinia.net/download/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="gtk ncurses"
-
-RDEPEND="
- ncurses? ( >=sys-libs/ncurses-5.5 )
- gtk? ( =x11-libs/gtk+-2* )
- >=net-libs/libnet-1.1.2
- >=net-libs/libpcap-0.9.4
-"
-DEPEND="
- virtual/pkgconfig
- ${RDEPEND}
-"
-
-DOCS=( AUTHORS ChangeLog FAQ README THANKS TODO )
-
-S="${WORKDIR}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-0.7.1-no-ncurses.patch
- epatch "${FILESDIR}"/${PN}-0.7.3-tinfo.patch
-
- if ! use gtk; then
- #bug #514802
- sed -i -e '/AM_GLIB_GNU_GETTEXT/d' configure.in || die
- fi
-
- eautoreconf
-}
-
-src_configure() {
- econf \
- --enable-admin \
- --with-pcap-includes=/usr/include \
- $(use_with ncurses) \
- $(use_enable gtk)
-}
-
-src_compile() {
- emake CFLAGS="${CFLAGS}"
-}