blob: b157bfe985f841855b44096db540134e54048ebc (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/kismet/kismet-2006.04.1.ebuild,v 1.9 2007/01/31 18:10:39 phreak Exp $
inherit toolchain-funcs linux-info
MY_P=${P/\./-}
MY_P=${MY_P/./-R}
S=${WORKDIR}/${MY_P}
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"
IUSE="ncurses"
RDEPEND="net-wireless/wireless-tools
ncurses? ( sys-libs/ncurses )"
DEPEND="${RDEPEND}
>=sys-devel/autoconf-2.58
sys-apps/sed"
src_unpack() {
unpack ${A}
sed -i -e "s:^\(logtemplate\)=\(.*\):\1=/tmp/\2:" \
"${S}"/conf/kismet.conf.in
# Remove -s from install options
sed -i -e 's| -s||g' "${S}"/Makefile.in
}
src_compile() {
# the configure script only honors '--disable-foo'
local config="--disable-gpsmap"
if ! use ncurses; then
config="${config} --disable-curses --disable-panel"
fi
# need to set CC and CXX for FEATURES=confcache, bug #129479
CC=$(tc-getCC) CXX=$(tc-getCXX) \
econf \
${config} --with-linuxheaders="${KV_DIR}" || die "econf failed"
einfo "You may safely ignore the warning about the missing .depend file"
emake dep || die "emake dep failed"
emake || die "emake failed"
}
src_install () {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc CHANGELOG README TODO docs/*
newinitd "${FILESDIR}"/${P}-init.d kismet
newconfd "${FILESDIR}"/${P}-conf.d kismet
}
|