blob: 004b919b03841ab13005ea9957574e80e36e2e03 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/kismet/kismet-2010.01.1.ebuild,v 1.3 2012/05/04 06:41:54 jdhore Exp $
EAPI="2"
inherit eutils
MY_P=${P/\./-}
MY_P=${MY_P/./-R}
DESCRIPTION="IEEE 802.11 wireless LAN sniffer"
HOMEPAGE="http://www.kismetwireless.net/"
SRC_URI="http://www.kismetwireless.net/code/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
# plugins have unresolved QA issues
#KISMET_PLUGINS="autowep btscan ptw spectools"
IUSE="+client kernel_linux +pcre +pcap +suid" # ${KISMET_PLUGINS}"
RDEPEND="client? ( sys-libs/ncurses )
kernel_linux? ( dev-libs/libnl:1.1
sys-libs/libcap )
pcap? ( net-libs/libpcap )
pcre? ( dev-libs/libpcre )"
# btscan? ( net-wireless/bluez )
# ptw? ( dev-libs/openssl )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S=${WORKDIR}/${MY_P}
src_prepare() {
sed -i -e 's:# *logprefix=.*:logprefix=/tmp:' conf/kismet.conf.in \
|| die "failed to change logprefix"
}
src_configure() {
econf --with-suidgroup=kismet \
$(use_enable client) \
$(use_enable kernel_linux linuxwext) \
$(use_enable pcre) \
$(use_enable pcap)
}
src_compile() {
emake || die "emake failed"
# for plugin in ${KISMET_PLUGINS}; do
# if use ${plugin}; then
# emake -C plugin-${plugin} KIS_SRC_DIR="${S}" \
# || die "emake in plugin-${plugin} failed"
# fi
# done
}
src_install() {
emake DESTDIR="${D}" commoninstall || die "emake install failed"
# for plugin in ${KISMET_PLUGINS}; do
# if use ${plugin}; then
# emake -C plugin-${plugin} KIS_SRC_DIR="${S}" DESTDIR="${D}" install \
# || die "emake install in plugin-${plugin} failed"
# fi
# done
dodoc README RELEASENOTES.txt docs/{DEVEL.client,README.newcore} || die
insinto /etc
doins conf/kismet{,_drone}.conf || die
newinitd "${FILESDIR}"/${PN}.initd kismet || die
newconfd "${FILESDIR}"/${PN}.confd kismet || die
if use suid; then
dobin kismet_capture || die
fperms 4550 /usr/bin/kismet_capture || die
fi
}
pkg_preinst() {
if use suid; then
enewgroup kismet
fowners root:kismet /usr/bin/kismet_capture || die
elog "Kismet has been installed with a setuid-root helper binary"
elog "to enable minimal-root operation. Users need to be part of"
elog "the 'kismet' group to perform captures from physical devices."
fi
}
|