From owner-freebsd-ports-bugs Sun Mar 2 22: 0:41 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1487837B401 for ; Sun, 2 Mar 2003 22:00:37 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94F7943FBF for ; Sun, 2 Mar 2003 22:00:36 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h2360QNS090503 for ; Sun, 2 Mar 2003 22:00:26 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h2360QqC090502; Sun, 2 Mar 2003 22:00:26 -0800 (PST) Date: Sun, 2 Mar 2003 22:00:26 -0800 (PST) Message-Id: <200303030600.h2360QqC090502@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Jose Rey Subject: Re: ports/48735: New Port:net/kismet Reply-To: Jose Rey Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/48735; it has been noted by GNATS. From: Jose Rey To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/48735: New Port:net/kismet Date: Mon, 3 Mar 2003 06:53:02 +0100 --2fHTh5uZTiUOsy+g Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi I hope this patch make the work diff -ur kismet.orig/Makefile kismet/Makefile --- kismet.orig/Makefile Mon Mar 3 06:41:26 2003 +++ kismet/Makefile Mon Mar 3 06:38:20 2003 @@ -15,12 +15,19 @@ RUN_DEPENDS= prism2ctl:${PORTSDIR}/net/bsd-airtools +post-install: + ${MV} ${PREFIX}/etc/kismet.conf ${PREFIX}/etc/kismet.conf.sample + ${MV} ${PREFIX}/etc/kismet_ui.conf ${PREFIX}/etc/kismet_ui.conf.sample + GNU_CONFIGURE= yes USE_GMAKE= yes CONFIGURE_ARGS+= --disable-gps \ --disable-netlink \ --disable-wireless \ --without-ethereal + +MAN1= kismet.1 kismet_monitor.1 kismet_hopper.1 +MAN5= kismet.conf.5 kismet_ui.conf.5 .if !exists(/usr/include/dev/wi/if_wavelan_ieee.h) BROKEN= You need to upgrade diff -ur kismet.orig/pkg-descr kismet/pkg-descr --- kismet.orig/pkg-descr Mon Mar 3 06:41:26 2003 +++ kismet/pkg-descr Mon Mar 3 02:34:43 2003 @@ -1,12 +1,12 @@ -bsd-airtools is a package that provides a complete toolset for -wireless 802.11b auditing. Namely, it currently contains a bsd-based -wep cracking application, called dweputils. It also contains a curses -based ap detection application similar to netstumbler (dstumbler) that -can be used to detect wireless access points and connected nodes, view -signal to noise graphs, and interactively scroll through scanned ap's -and view statistics for each. It also includes a couple other tools to -provide a complete toolset for making use of all 14 of the prism2 -debug modes as well as do basic analysis of the hardware-based -link-layer protocols provided by prism2's monitor debug mode. +Kismet is an 802.11 wireless network sniffer - +this is different from a normal network sniffer +(such as Ethereal or tcpdump) because it separates +and identifies different wireless networks in the area. i +Kismet works with any 802.11b wireless card which is capable +of reporting raw packets (rfmon support), which include any +prism2 based card (Linksys, D-Link, Rangelan, etc), Cisco Aironet cards, +and Orinoco based cards. Kismet also supports the WSP100 802.11b +remote sensor by Network Chemistry and is able to monitor +802.11a networks with cards which use the ar5k chipset. -WWW: http://www.dachb0den.com/projects/bsd-airtools.html +WWW: http://www.kismetwireless.net diff -ur kismet.orig/pkg-plist kismet/pkg-plist --- kismet.orig/pkg-plist Mon Mar 3 06:41:26 2003 +++ kismet/pkg-plist Mon Mar 3 06:39:14 2003 @@ -6,16 +6,11 @@ bin/kismet_unmonitor etc/ap_manuf etc/client_manuf -etc/kismet.conf -etc/kismet_ui.conf -man/man1/kismet.1 -man/man1/kismet_monitor.1 -man/man1/kismet_hopper.1 -man/man5/kismet.conf.5 -man/man5/kismet_ui.conf.5 +etc/kismet.conf.sample +etc/kismet_ui.conf.sample share/kismet/wav/new_network.wav share/kismet/wav/traffic.wav share/kismet/wav/junk_traffic.wav share/kismet/wav/alert.wav -@dirrm share/kismet @dirrm share/kismet/wav +@dirrm share/kismet --2fHTh5uZTiUOsy+g Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="kismet-2.8.1.patch" diff -ur kismet.orig/Makefile kismet/Makefile --- kismet.orig/Makefile Mon Mar 3 06:41:26 2003 +++ kismet/Makefile Mon Mar 3 06:38:20 2003 @@ -15,12 +15,19 @@ RUN_DEPENDS= prism2ctl:${PORTSDIR}/net/bsd-airtools +post-install: + ${MV} ${PREFIX}/etc/kismet.conf ${PREFIX}/etc/kismet.conf.sample + ${MV} ${PREFIX}/etc/kismet_ui.conf ${PREFIX}/etc/kismet_ui.conf.sample + GNU_CONFIGURE= yes USE_GMAKE= yes CONFIGURE_ARGS+= --disable-gps \ --disable-netlink \ --disable-wireless \ --without-ethereal + +MAN1= kismet.1 kismet_monitor.1 kismet_hopper.1 +MAN5= kismet.conf.5 kismet_ui.conf.5 .if !exists(/usr/include/dev/wi/if_wavelan_ieee.h) BROKEN= You need to upgrade diff -ur kismet.orig/pkg-descr kismet/pkg-descr --- kismet.orig/pkg-descr Mon Mar 3 06:41:26 2003 +++ kismet/pkg-descr Mon Mar 3 02:34:43 2003 @@ -1,12 +1,12 @@ -bsd-airtools is a package that provides a complete toolset for -wireless 802.11b auditing. Namely, it currently contains a bsd-based -wep cracking application, called dweputils. It also contains a curses -based ap detection application similar to netstumbler (dstumbler) that -can be used to detect wireless access points and connected nodes, view -signal to noise graphs, and interactively scroll through scanned ap's -and view statistics for each. It also includes a couple other tools to -provide a complete toolset for making use of all 14 of the prism2 -debug modes as well as do basic analysis of the hardware-based -link-layer protocols provided by prism2's monitor debug mode. +Kismet is an 802.11 wireless network sniffer - +this is different from a normal network sniffer +(such as Ethereal or tcpdump) because it separates +and identifies different wireless networks in the area. i +Kismet works with any 802.11b wireless card which is capable +of reporting raw packets (rfmon support), which include any +prism2 based card (Linksys, D-Link, Rangelan, etc), Cisco Aironet cards, +and Orinoco based cards. Kismet also supports the WSP100 802.11b +remote sensor by Network Chemistry and is able to monitor +802.11a networks with cards which use the ar5k chipset. -WWW: http://www.dachb0den.com/projects/bsd-airtools.html +WWW: http://www.kismetwireless.net diff -ur kismet.orig/pkg-plist kismet/pkg-plist --- kismet.orig/pkg-plist Mon Mar 3 06:41:26 2003 +++ kismet/pkg-plist Mon Mar 3 06:39:14 2003 @@ -6,16 +6,11 @@ bin/kismet_unmonitor etc/ap_manuf etc/client_manuf -etc/kismet.conf -etc/kismet_ui.conf -man/man1/kismet.1 -man/man1/kismet_monitor.1 -man/man1/kismet_hopper.1 -man/man5/kismet.conf.5 -man/man5/kismet_ui.conf.5 +etc/kismet.conf.sample +etc/kismet_ui.conf.sample share/kismet/wav/new_network.wav share/kismet/wav/traffic.wav share/kismet/wav/junk_traffic.wav share/kismet/wav/alert.wav -@dirrm share/kismet @dirrm share/kismet/wav +@dirrm share/kismet --2fHTh5uZTiUOsy+g-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message