View | Details | Raw Unified | Return to bug 124142
Collapse All | Expand All

(-)kismet/Makefile (-3 / +2 lines)
Lines 6-16 Link Here
6
#
6
#
7
7
8
PORTNAME=	kismet
8
PORTNAME=	kismet
9
PORTVERSION=	200710.r1
9
PORTVERSION=	200805.r1
10
PORTREVISION=	1
11
CATEGORIES=	net-mgmt
10
CATEGORIES=	net-mgmt
12
MASTER_SITES=	http://www.kismetwireless.net/code/
11
MASTER_SITES=	http://www.kismetwireless.net/code/
13
DISTNAME=	kismet-2007-10-R1
12
DISTNAME=	kismet-2008-05-R1
14
13
15
MAINTAINER=	peter.thoenen@yahoo.com
14
MAINTAINER=	peter.thoenen@yahoo.com
16
COMMENT=	802.11 layer2 wireless network detector, sniffer, and IDS
15
COMMENT=	802.11 layer2 wireless network detector, sniffer, and IDS
(-)kismet/distinfo (-4 / +3 lines)
Lines 1-6 Link Here
1
MD5 (kismet-2007-10-R1.tar.gz) = 2100c667e69db0cde35fa2d06c8516e2
1
MD5 (kismet-2008-05-R1.tar.gz) = 6ee365d36354b4dee4945e67f8149294
2
SHA256 (kismet-2007-10-R1.tar.gz) = 023e7f47039c1ad8615052e464f76a3cd496a423449b931036d127c56d58b2b9
2
SHA256 (kismet-2008-05-R1.tar.gz) = a298d44f8a6ec977021cd492a720987ded81b5c4baf5f68b36f1282a23c9f7d3
3
SIZE (kismet-2007-10-R1.tar.gz) = 646452
3
SIZE (kismet-2008-05-R1.tar.gz) = 655362
4
MD5 (kismet-2007-01-R1b.tar.gz) = a1dcea71f0c3f881ef72f5bca2db7b39
5
SHA256 (gpsmap-gmap-0.1.tgz) = 66c5e9c4fed70e88d092754746014bb02071b742c23390f1ec795fd14b32317b
4
SHA256 (gpsmap-gmap-0.1.tgz) = 66c5e9c4fed70e88d092754746014bb02071b742c23390f1ec795fd14b32317b
6
SIZE (gpsmap-gmap-0.1.tgz) = 13845
5
SIZE (gpsmap-gmap-0.1.tgz) = 13845
(-)kismet/files/patch-kismet-gpsmap.cc (-16 lines)
Lines 1-16 Link Here
1
--- gpsmap.cc.orig	Mon Oct 15 15:13:32 2007
2
+++ gpsmap.cc	Mon Oct 15 15:15:19 2007
3
@@ -2242,11 +2242,11 @@
4
     pthread_attr_destroy(&attr);
5
 
6
     // Now wait for the threads to complete and come back
7
-    int thread_status;
8
+    intptr_t thread_status;
9
     for (int t = 0; t < numthreads; t++) {
10
         void *tmp;
11
         pthread_join(mapthread[t], &tmp);
12
-	thread_status = reinterpret_cast<int>(tmp);
13
+	thread_status = reinterpret_cast<intptr_t>(tmp);
14
     }
15
 #else
16
     // Run one instance of our "thread".  thread number 0, it should just crunch it all

Return to bug 124142