blob: c10b557038920b3905ccec68b366c72c9418b136 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/wispy-tools/wispy-tools-2006.09.1.ebuild,v 1.1 2007/03/07 19:08:45 robbat2 Exp $
MY_P=${P/\./-}
MY_P=${MY_P/./-R}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Tools for the MetaGeek Wi-Spy spectrum analyzer"
HOMEPAGE="http://www.kismetwireless.net/wispy.shtml"
SRC_URI="http://www.kismetwireless.net/code/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="debug gtk ncurses"
DEPEND="dev-libs/libusb
ncurses? ( sys-libs/ncurses )
gtk? ( =x11-libs/gtk+-2* )"
src_compile() {
econf $(use_with gtk gtk-version 2) || die "econf failed"
emake wispy_log || die "emake wispy_log failed"
if use debug; then
emake wispy_raw || die "emake wispy_raw failed"
fi
if use ncurses; then
emake wispy_curses || die "emake wispy_curses failed"
fi
if use gtk; then
emake wispy_gtk || die "emake wispy_gtk failed"
fi
}
src_install() {
dobin wispy_log
use debug && dobin wispy_raw
use ncurses && dobin wispy_curses
use gtk && dobin wispy_gtk
dodoc README
}
|