blob: c0d5978fdf85ec42e76a93f9756d54b632aca3ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit 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
"
PATCHES=(
"${FILESDIR}"/${P}-sniffd.patch
"${FILESDIR}"/${P}-off-by-one.patch
"${FILESDIR}"/${P}-fprintf-format.patch
"${FILESDIR}"/${P}-fno-common.patch
)
src_prepare() {
default
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
}
|