net-analyzer/yersinia: drop old

Signed-off-by: Aaron Bauman <bman@gentoo.org>
This commit is contained in:
Aaron Bauman
2020-11-27 09:43:47 -05:00
parent 17911433cf
commit 2a6872dc43
2 changed files with 0 additions and 54 deletions

View File

@@ -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

View File

@@ -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}"
}