diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2007-10-23 23:54:09 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2007-10-23 23:54:09 +0000 |
commit | 289500c0f7e6abd6d97a667328f5b537bb90af24 (patch) | |
tree | a019c0f4dee373dc39328563e9fd5b143c8d77d7 /net-mgmt/kismet | |
parent | c6c6848a4f7b44951ed2789b56e2066f0860e4d2 (diff) | |
download | ports-289500c0f7e6abd6d97a667328f5b537bb90af24.tar.gz ports-289500c0f7e6abd6d97a667328f5b537bb90af24.zip |
Notes
Diffstat (limited to 'net-mgmt/kismet')
-rw-r--r-- | net-mgmt/kismet/Makefile | 4 | ||||
-rw-r--r-- | net-mgmt/kismet/distinfo | 6 | ||||
-rw-r--r-- | net-mgmt/kismet/files/patch-kismet-gpsmap.cc | 16 |
3 files changed, 21 insertions, 5 deletions
diff --git a/net-mgmt/kismet/Makefile b/net-mgmt/kismet/Makefile index 561dda9dbba2..12eeed834c82 100644 --- a/net-mgmt/kismet/Makefile +++ b/net-mgmt/kismet/Makefile @@ -6,10 +6,10 @@ # PORTNAME= kismet -PORTVERSION= 200701.r1 +PORTVERSION= 200710.r1 CATEGORIES= net-mgmt MASTER_SITES= http://www.kismetwireless.net/code/ -DISTNAME= kismet-2007-01-R1b +DISTNAME= kismet-2007-10-R1 MAINTAINER= peter.thoenen@yahoo.com COMMENT= 802.11 layer2 wireless network detector, sniffer, and IDS diff --git a/net-mgmt/kismet/distinfo b/net-mgmt/kismet/distinfo index 7b61fd391165..fb0c60e7faa0 100644 --- a/net-mgmt/kismet/distinfo +++ b/net-mgmt/kismet/distinfo @@ -1,6 +1,6 @@ +MD5 (kismet-2007-10-R1.tar.gz) = 2100c667e69db0cde35fa2d06c8516e2 +SHA256 (kismet-2007-10-R1.tar.gz) = 023e7f47039c1ad8615052e464f76a3cd496a423449b931036d127c56d58b2b9 +SIZE (kismet-2007-10-R1.tar.gz) = 646452 MD5 (kismet-2007-01-R1b.tar.gz) = a1dcea71f0c3f881ef72f5bca2db7b39 -SHA256 (kismet-2007-01-R1b.tar.gz) = 1b998b34e2e9377f5ac7704295d64507234fe7656e49d384f8bf95604e97e05b -SIZE (kismet-2007-01-R1b.tar.gz) = 625585 -MD5 (gpsmap-gmap-0.1.tgz) = 7c62c841ccdc187812a0fe602d92d97c SHA256 (gpsmap-gmap-0.1.tgz) = 66c5e9c4fed70e88d092754746014bb02071b742c23390f1ec795fd14b32317b SIZE (gpsmap-gmap-0.1.tgz) = 13845 diff --git a/net-mgmt/kismet/files/patch-kismet-gpsmap.cc b/net-mgmt/kismet/files/patch-kismet-gpsmap.cc new file mode 100644 index 000000000000..f3e7270fe615 --- /dev/null +++ b/net-mgmt/kismet/files/patch-kismet-gpsmap.cc @@ -0,0 +1,16 @@ +--- gpsmap.cc.orig Mon Oct 15 15:13:32 2007 ++++ gpsmap.cc Mon Oct 15 15:15:19 2007 +@@ -2242,11 +2242,11 @@ + pthread_attr_destroy(&attr); + + // Now wait for the threads to complete and come back +- int thread_status; ++ intptr_t thread_status; + for (int t = 0; t < numthreads; t++) { + void *tmp; + pthread_join(mapthread[t], &tmp); +- thread_status = reinterpret_cast<int>(tmp); ++ thread_status = reinterpret_cast<intptr_t>(tmp); + } + #else + // Run one instance of our "thread". thread number 0, it should just crunch it all |