From owner-svn-ports-head@FreeBSD.ORG Wed Oct 16 21:37:40 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 681985E6; Wed, 16 Oct 2013 21:37:40 +0000 (UTC) (envelope-from nemysis@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 54F0B2C84; Wed, 16 Oct 2013 21:37:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9GLbepO091932; Wed, 16 Oct 2013 21:37:40 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9GLbdRi091927; Wed, 16 Oct 2013 21:37:39 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201310162137.r9GLbdRi091927@svn.freebsd.org> From: Rusmir Dusko Date: Wed, 16 Oct 2013 21:37:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r330548 - in head/net: . wlan2eth wlan2eth/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Oct 2013 21:37:40 -0000 Author: nemysis Date: Wed Oct 16 21:37:38 2013 New Revision: 330548 URL: http://svnweb.freebsd.org/changeset/ports/330548 Log: A simple tool to convert packet captures in 802.11 format to Ethernet format. Lots of tools can only understand Ethernet link types, so I wrote this tool to convert captures to a format that they can understand. Note that this tool is really only useful for encrypted traffic. Specify a wireless packet capture as an input file, and the name of the desired Ethernet-format output file. Wlan2eth will only convert data frames to the output file, which will likely result in a significantly smaller output packet capture file. Note that wlan2eth will only convert unencrypted frames. WWW: http://www.willhackforsushi.com/?page_id=79 PR: ports/179095 Submitted by: nemysis (self) Approved by: wg/pawel (mentors) Added: head/net/wlan2eth/ head/net/wlan2eth/Makefile (contents, props changed) head/net/wlan2eth/distinfo (contents, props changed) head/net/wlan2eth/files/ head/net/wlan2eth/files/pkg-message.in (contents, props changed) head/net/wlan2eth/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Wed Oct 16 21:36:39 2013 (r330547) +++ head/net/Makefile Wed Oct 16 21:37:38 2013 (r330548) @@ -1244,6 +1244,7 @@ SUBDIR += wired-tracker SUBDIR += wireshark SUBDIR += wireshark-lite + SUBDIR += wlan2eth SUBDIR += wmlj SUBDIR += wmnd SUBDIR += wmnet Added: head/net/wlan2eth/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/wlan2eth/Makefile Wed Oct 16 21:37:38 2013 (r330548) @@ -0,0 +1,32 @@ +# Created by: Rusmir Dusko +# $FreeBSD$ + +PORTNAME= wlan2eth +PORTVERSION= 1.3 +CATEGORIES= net security +MASTER_SITES= http://www.willhackforsushi.com/code/${PORTNAME}/ +EXTRACT_SUFX= .tgz + +MAINTAINER= nemysis@FreeBSD.org +COMMENT= Convert packet captures in 802.11 format to Ethernet format + +LICENSE= GPLv2 + +PORTDOCS= THANKS +SUB_FILES= pkg-message + +PLIST_FILES= bin/${PORTNAME} + +OPTIONS_DEFINE= DOCS + +post-patch: + @${REINPLACE_CMD} -e 's|CFLAGS =|CFLAGS ?=|' \ + ${WRKSRC}/Makefile + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ + + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + +.include Added: head/net/wlan2eth/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/wlan2eth/distinfo Wed Oct 16 21:37:38 2013 (r330548) @@ -0,0 +1,2 @@ +SHA256 (wlan2eth-1.3.tgz) = a6b9f4a9f0407f79e61571de73e800785d4047019d66b891a569ff75cc5fe774 +SIZE (wlan2eth-1.3.tgz) = 8242 Added: head/net/wlan2eth/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/wlan2eth/files/pkg-message.in Wed Oct 16 21:37:38 2013 (r330548) @@ -0,0 +1,9 @@ +=============================================================================== + +wlan2eth has been installed. + +For more information about wlan2eth visit: + +http://www.willhackforsushi.com/?page_id=79 + +=============================================================================== Added: head/net/wlan2eth/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/wlan2eth/pkg-descr Wed Oct 16 21:37:38 2013 (r330548) @@ -0,0 +1,11 @@ +A simple tool to convert packet captures in 802.11 format to Ethernet format. +Lots of tools can only understand Ethernet link types, so I wrote this +tool to convert captures to a format that they can understand. +Note that this tool is really only useful for encrypted traffic. + +Specify a wireless packet capture as an input file, and the name of the +desired Ethernet-format output file. Wlan2eth will only convert data frames +to the output file, which will likely result in a significantly smaller output +packet capture file. Note that wlan2eth will only convert unencrypted frames. + +WWW: http://www.willhackforsushi.com/?page_id=79