diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2009-09-01 14:01:40 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-09-09 16:40:19 +0200 |
commit | 57f3b11d111fb5f7fd48d64a43a83e25d69bdb4c (patch) | |
tree | 87c9f8cee5b268a0bd70bdaa8ac2162da2862270 /package/kismet/Config.in | |
parent | 8c1189587654cac752d920ac37730afac0c758a7 (diff) |
kismet: bump version and convert to Makefile.autotools.in format
Closes #487
* Bump kismet from 2007-10-R1 to 2009-06-R1 (newcore: nicer, more features)
* Migrate to Makefile.autotools.in
* Introduce new options to just install the server, client, drone or
combination
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/kismet/Config.in')
-rw-r--r-- | package/kismet/Config.in | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/package/kismet/Config.in b/package/kismet/Config.in index 276c25285..5674fbc00 100644 --- a/package/kismet/Config.in +++ b/package/kismet/Config.in @@ -1,12 +1,15 @@ -comment "kismet has no inherent support for AVR32" +comment "Kismet has no inherent support for AVR32" depends on BR2_avr32 && BR2_PACKAGE_KISMET +comment "Kismet requires a toolchain with C++ support enabled" + depends on !BR2_INSTALL_LIBSTDCPP + config BR2_PACKAGE_KISMET bool "kismet" + depends on BR2_INSTALL_LIBSTDCPP select BR2_PACKAGE_NCURSES + select BR2_PACKAGE_NCURSES_TARGET_PANEL select BR2_PACKAGE_LIBPCAP - select BR2_PACKAGE_DBUS - select BR2_PACKAGE_DBUS_GLIB help Kismet - 802.11 layer2 wireless network detector, sniffer, and intrusion detection system. @@ -21,3 +24,17 @@ config BR2_PACKAGE_KISMET of nonbeaconing networks via data traffic. http://www.kismetwireless.net + +config BR2_PACKAGE_KISMET_CLIENT + bool "Install client" + depends on BR2_PACKAGE_KISMET + +config BR2_PACKAGE_KISMET_DRONE + bool "Install drone" + depends on BR2_PACKAGE_KISMET + +config BR2_PACKAGE_KISMET_SERVER + bool "Install server" + default y + depends on BR2_PACKAGE_KISMET + |