net-wireless/airtraf: drop old

Signed-off-by: Aaron Bauman <bman@gentoo.org>
This commit is contained in:
Aaron Bauman
2020-12-02 09:07:30 -05:00
parent 8b22ac8464
commit d32b57bf6f

View File

@@ -1,52 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils toolchain-funcs
DESCRIPTION="AirTraf 802.11b Wireless traffic sniffer"
LICENSE="GPL-2"
HOMEPAGE="http://www.elixar.com/"
SRC_URI="http://www.elixar.com/${P}.tar.gz"
SLOT="0"
KEYWORDS="amd64 ppc x86"
RDEPEND="
net-libs/libpcap
sys-libs/ncurses:=
"
DEPEND="
${RDEPEND}
virtual/pkgconfig
"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-sniffd.patch \
"${FILESDIR}"/${P}-off-by-one.patch \
"${FILESDIR}"/${P}-fprintf-format.patch
sed -i \
-e '/^LIBS/s|=.*|= $(shell $(PKG_CONFIG) --libs panel)|' \
src/libncurses/Makefile || die
sed -i \
-e 's|-lpanel -lncurses|$(shell $(PKG_CONFIG) --libs ncurses panel)|' \
src/sniffd/Makefile || die
tc-export PKG_CONFIG
}
src_compile() {
# parallel make (bug #297331)
emake -C src -j1 \
CC=$(tc-getCC) \
CXX=$(tc-getCXX) \
CFLAGS="${CFLAGS}" \
CXXFLAGS="${CXXFLAGS}" \
LDFLAGS="${LDFLAGS}"
}
src_install() {
dobin src/airtraf
dodoc Authors COMPATIBILITY docs/airtraf_doc.html
}