Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] svn commit: trunk/buildroot/package/kismet
@ 2007-10-31 12:46 thomasez at uclibc.org
  0 siblings, 0 replies; 10+ messages in thread
From: thomasez at uclibc.org @ 2007-10-31 12:46 UTC (permalink / raw)
  To: buildroot

Author: thomasez
Date: 2007-10-31 05:46:52 -0700 (Wed, 31 Oct 2007)
New Revision: 20349

Log:
Had an issue noted in bug #1557, attached patch.


Modified:
   trunk/buildroot/package/kismet/kismet.mk


Changeset:
Modified: trunk/buildroot/package/kismet/kismet.mk
===================================================================
--- trunk/buildroot/package/kismet/kismet.mk	2007-10-31 06:52:26 UTC (rev 20348)
+++ trunk/buildroot/package/kismet/kismet.mk	2007-10-31 12:46:52 UTC (rev 20349)
@@ -47,15 +47,16 @@
 	$(MAKE) CXX="$(TARGET_CXX)" CC="$(TARGET_CC)" \
 		-C $(KISMET_DIR)
 
-$(TARGET_DIR)/$(KISMET_TARGET_BINARY): $(KISMET_DIR)/$(KISMET_BINARY)
+$(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/$(KISMET_BINARY): $(KISMET_DIR)/$(KISMET_BINARY)
 	install -m 755 $(KISMET_DIR)/kismet $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet
 	install -m 755 $(KISMET_DIR)/kismet_client $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet_client
 	install -m 755 $(KISMET_DIR)/kismet_drone $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet_drone
 	install -m 755 $(KISMET_DIR)/kismet_server $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet_server
 	install -m 755 $(KISMET_DIR)/conf/kismet.conf $(TARGET_DIR)/etc/kismet.conf
 
-kismet: uclibc ncurses libpcap $(TARGET_DIR)/$(KISMET_TARGET_BINARY)
+kismet: uclibc ncurses libpcap $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/$(KISMET_BINARY)
 
+
 kismet-clean:
 	rm -f $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet
 	rm -f $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet_client

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/kismet
@ 2009-01-21  0:17 ulf at uclibc.org
  0 siblings, 0 replies; 10+ messages in thread
From: ulf at uclibc.org @ 2009-01-21  0:17 UTC (permalink / raw)
  To: buildroot

Author: ulf
Date: 2009-01-21 00:17:03 +0000 (Wed, 21 Jan 2009)
New Revision: 24931

Log:
add kismet-unpacked target, fix lack of include for memset etc.

Added:
   trunk/buildroot/package/kismet/kismet-2007-10-R1-memset.patch

Modified:
   trunk/buildroot/package/kismet/kismet.mk


Changeset:
Added: trunk/buildroot/package/kismet/kismet-2007-10-R1-memset.patch
===================================================================
--- trunk/buildroot/package/kismet/kismet-2007-10-R1-memset.patch	                        (rev 0)
+++ trunk/buildroot/package/kismet/kismet-2007-10-R1-memset.patch	2009-01-21 00:17:03 UTC (rev 24931)
@@ -0,0 +1,45 @@
+diff -urN kismet-2007-10-R1-0rig//kismet_wrapper.cc kismet-2007-10-R1/kismet_wrapper.cc
+--- kismet-2007-10-R1-0rig//kismet_wrapper.cc	2007-10-06 23:50:03.000000000 +0200
++++ kismet-2007-10-R1/kismet_wrapper.cc	2009-01-21 01:12:42.000000000 +0100
+@@ -27,6 +27,7 @@
+ #include <unistd.h>
+ 
+ #include "config.h"
++#include <string.h>
+ 
+ /* Blob of globals since sighandler needs them */
+ vector<string> postcli_err;
+diff -urN kismet-2007-10-R1-0rig//ringbuf.cc kismet-2007-10-R1/ringbuf.cc
+--- kismet-2007-10-R1-0rig//ringbuf.cc	2005-12-11 20:14:39.000000000 +0100
++++ kismet-2007-10-R1/ringbuf.cc	2009-01-21 01:12:26.000000000 +0100
+@@ -17,6 +17,7 @@
+ */
+ 
+ #include "ringbuf.h"
++#include <string.h>
+ 
+ RingBuffer::RingBuffer(int in_size) {
+     ring_len = in_size;
+diff -urN kismet-2007-10-R1-0rig//util.cc kismet-2007-10-R1/util.cc
+--- kismet-2007-10-R1-0rig//util.cc	2006-08-28 22:37:29.000000000 +0200
++++ kismet-2007-10-R1/util.cc	2009-01-21 01:12:26.000000000 +0100
+@@ -22,6 +22,7 @@
+ #include <sys/types.h>
+ #include <sys/stat.h>
+ #include <fcntl.h>
++#include <string.h>
+ 
+ // We need this to make uclibc happy since they don't even have rintf...
+ #ifndef rintf
+diff -urN kismet-2007-10-R1-0rig//util.h kismet-2007-10-R1/util.h
+--- kismet-2007-10-R1-0rig//util.h	2006-08-28 22:37:29.000000000 +0200
++++ kismet-2007-10-R1/util.h	2009-01-21 01:12:26.000000000 +0100
+@@ -65,7 +65,7 @@
+         end = op.end;
+         return *this;
+     }
+-};
++} swt;
+ vector<smart_word_token> SmartStrTokenize(string in_str, string in_split, int return_partial = 1);
+ 
+ vector<string> LineWrap(string in_txt, unsigned int in_hdr_len, unsigned int in_maxlen);

Modified: trunk/buildroot/package/kismet/kismet.mk
===================================================================
--- trunk/buildroot/package/kismet/kismet.mk	2009-01-20 22:38:39 UTC (rev 24930)
+++ trunk/buildroot/package/kismet/kismet.mk	2009-01-21 00:17:03 UTC (rev 24931)
@@ -62,6 +62,7 @@
 
 kismet: uclibc ncurses libpcap dbus $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/$(KISMET_BINARY)
 
+kismet-unpacked: $(KISMET_DIR)/.patched
 
 kismet-clean:
 	rm -f $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/kismet
@ 2009-01-14 23:51 ulf at uclibc.org
  2009-01-15  8:20 ` Peter Korsgaard
  0 siblings, 1 reply; 10+ messages in thread
From: ulf at uclibc.org @ 2009-01-14 23:51 UTC (permalink / raw)
  To: buildroot

Author: ulf
Date: 2009-01-14 23:51:32 +0000 (Wed, 14 Jan 2009)
New Revision: 24849

Log:
Kismet needs dbus to build

Modified:
   trunk/buildroot/package/kismet/kismet.mk


Changeset:
Modified: trunk/buildroot/package/kismet/kismet.mk
===================================================================
--- trunk/buildroot/package/kismet/kismet.mk	2009-01-14 23:50:44 UTC (rev 24848)
+++ trunk/buildroot/package/kismet/kismet.mk	2009-01-14 23:51:32 UTC (rev 24849)
@@ -60,7 +60,7 @@
 	install -m 755 $(KISMET_DIR)/kismet_server $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet_server
 	install -m 755 $(KISMET_DIR)/conf/kismet.conf $(TARGET_DIR)/etc/kismet.conf
 
-kismet: uclibc ncurses libpcap $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/$(KISMET_BINARY)
+kismet: uclibc ncurses libpcap dbus $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/$(KISMET_BINARY)
 
 
 kismet-clean:

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/kismet
@ 2008-08-27 20:18 jacmet at uclibc.org
  0 siblings, 0 replies; 10+ messages in thread
From: jacmet at uclibc.org @ 2008-08-27 20:18 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-08-27 13:18:51 -0700 (Wed, 27 Aug 2008)
New Revision: 23251

Log:
kismet: fix long help text lines

And add homepage while we're at it.

Modified:
   trunk/buildroot/package/kismet/Config.in


Changeset:
Modified: trunk/buildroot/package/kismet/Config.in
===================================================================
--- trunk/buildroot/package/kismet/Config.in	2008-08-27 20:18:43 UTC (rev 23250)
+++ trunk/buildroot/package/kismet/Config.in	2008-08-27 20:18:51 UTC (rev 23251)
@@ -4,14 +4,17 @@
 	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
+	  Kismet - 802.11 layer2 wireless network detector, sniffer,
+	  and intrusion detection system.
 
-		Kismet will work with any wireless card which supports raw monitoring (rfmon) mode, and can
-		sniff 802.11b, 802.11a, and 802.11g traffic.
-		
-		Kismet identifies networks by passively collecting packets and detecting standard named
-		networks, detecting (and given time, decloaking) hidden networks, and infering the presence
-		of nonbeaconing networks via data traffic.
+	  Kismet will work with any wireless card which supports raw
+	  monitoring (rfmon) mode, and can sniff 802.11b, 802.11a, and
+	  802.11g traffic.
 
+	  Kismet identifies networks by passively collecting packets
+	  and detecting standard named networks, detecting (and given
+	  time, decloaking) hidden networks, and infering the presence
+	  of nonbeaconing networks via data traffic.
+
+	  http://www.kismetwireless.net

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/kismet
@ 2007-11-14  9:41 thomasez at uclibc.org
  0 siblings, 0 replies; 10+ messages in thread
From: thomasez at uclibc.org @ 2007-11-14  9:41 UTC (permalink / raw)
  To: buildroot

Author: thomasez
Date: 2007-11-14 01:41:21 -0800 (Wed, 14 Nov 2007)
New Revision: 20421

Log:
This will hopefully address the comment on bug #1557


Modified:
   trunk/buildroot/package/kismet/Config.in
   trunk/buildroot/package/kismet/kismet.mk


Changeset:
Modified: trunk/buildroot/package/kismet/Config.in
===================================================================
--- trunk/buildroot/package/kismet/Config.in	2007-11-13 22:23:57 UTC (rev 20420)
+++ trunk/buildroot/package/kismet/Config.in	2007-11-14 09:41:21 UTC (rev 20421)
@@ -2,6 +2,9 @@
 	bool "kismet"
 	select BR2_PACKAGE_NCURSES 
 	select BR2_PACKAGE_LIBPCAP
+	select BR2_PACKAGE_DBUS
+	select BR2_PACKAGE_DBUS_GLIB
+
 	default n
 	help
 		Kismet - 802.11 layer2 wireless network detector, sniffer, and intrusion detection system

Modified: trunk/buildroot/package/kismet/kismet.mk
===================================================================
--- trunk/buildroot/package/kismet/kismet.mk	2007-11-13 22:23:57 UTC (rev 20420)
+++ trunk/buildroot/package/kismet/kismet.mk	2007-11-14 09:41:21 UTC (rev 20421)
@@ -25,6 +25,11 @@
 	(cd $(KISMET_DIR); rm -rf config.cache; \
 		$(TARGET_CONFIGURE_OPTS) \
 		$(TARGET_CONFIGURE_ARGS) \
+		DBUS_CFLAGS="-I$(STAGING_DIR)/usr/include/dbus-1.0 -I$(STAGING_DIR)/usr/lib/dbus-1.0/include" \
+		DBUS_LIBS="$(STAGING_DIR)/usr/lib/libdbus-1.so" \
+		DBUS_GLIB_CFLAGS="-I$(STAGING_DIR)/usr/include/glib-2.0 -I$(STAGING_DIR)/usr/lib/glib-2.0/include" \
+		DBUS_GLIB_LIBS="$(STAGING_DIR)/lib/libglib-2.0.so $(STAGING_DIR)/lib/libgobject-2.0.so $(STAGING_DIR)/lib/libgmodule-2.0.so $(STAGING_DIR)/lib/libgthread-2.0.so" \
+		PKG_CONFIG=/usr/bin/pkg-config \
 		./configure \
 		--target=$(GNU_TARGET_NAME) \
 		--host=$(GNU_TARGET_NAME) \
@@ -40,12 +45,18 @@
 		--localstatedir=/var \
 		--mandir=/usr/man \
 		--infodir=/usr/info \
+		$(DISABLE_NLS) \
+		$(DISABLE_LARGEFILE) \
 	)
 	touch $@
 
 $(KISMET_DIR)/$(KISMET_BINARY): $(KISMET_DIR)/.configured
 	$(MAKE) CXX="$(TARGET_CXX)" CC="$(TARGET_CC)" \
 		-C $(KISMET_DIR)
+	-$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(KISMET_DIR)/kismet
+	-$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(KISMET_DIR)/kismet_client
+	-$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(KISMET_DIR)/kismet_drone
+	-$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(KISMET_DIR)/kismet_server
 
 $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/$(KISMET_BINARY): $(KISMET_DIR)/$(KISMET_BINARY)
 	install -m 755 $(KISMET_DIR)/kismet $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/kismet
@ 2007-10-30 21:57 ulf at uclibc.org
  0 siblings, 0 replies; 10+ messages in thread
From: ulf at uclibc.org @ 2007-10-30 21:57 UTC (permalink / raw)
  To: buildroot

Author: ulf
Date: 2007-10-30 14:57:43 -0700 (Tue, 30 Oct 2007)
New Revision: 20340

Log:
Fix kismet makefile fragment syntax error

Modified:
   trunk/buildroot/package/kismet/kismet.mk


Changeset:
Modified: trunk/buildroot/package/kismet/kismet.mk
===================================================================
--- trunk/buildroot/package/kismet/kismet.mk	2007-10-30 21:37:39 UTC (rev 20339)
+++ trunk/buildroot/package/kismet/kismet.mk	2007-10-30 21:57:43 UTC (rev 20340)
@@ -62,8 +62,6 @@
 	rm -f $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet_drone
 	rm -f $(TARGET_DIR)/$(KISMET_TARGET_DIRECTORY)/kismet_server
 	rm -f $(KISMET_DIR)/conf/kismet.conf $(TARGET_DIR)/etc/kismet.conf
-
-
 	-$(MAKE) -C $(KISMET_DIR) clean
 
 kismet-dirclean:

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2009-01-26 15:45 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-31 12:46 [Buildroot] svn commit: trunk/buildroot/package/kismet thomasez at uclibc.org
  -- strict thread matches above, loose matches on Subject: below --
2009-01-21  0:17 ulf at uclibc.org
2009-01-14 23:51 ulf at uclibc.org
2009-01-15  8:20 ` Peter Korsgaard
2009-01-15 21:43   ` Ulf Samuelsson
2009-01-15 21:51     ` Peter Korsgaard
2009-01-26 15:45       ` Peter Korsgaard
2008-08-27 20:18 jacmet at uclibc.org
2007-11-14  9:41 thomasez at uclibc.org
2007-10-30 21:57 ulf at uclibc.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox