--- weplab-0.1.5.orig/debian/control +++ weplab-0.1.5/debian/control @@ -0,0 +1,17 @@ +Source: weplab +Section: net +Priority: optional +Maintainer: Adam Cécile (Le_Vert) +Build-Depends: debhelper (>= 5), autotools-dev, libpcap0.8-dev +Standards-Version: 3.7.2 +Homepage: http://weplab.sourceforge.net/ + +Package: weplab +Architecture: any +Depends: ${shlibs:Depends} +Description: tool designed to break WEP keys + WepLab is a tool designed to teach how WEP works, what different + vulnerabilities it has, and how they can be used in practice to + break a WEP protected wireless network. + . + WepLab can dump network traffic, analyse it or crack the WEP key. --- weplab-0.1.5.orig/debian/changelog +++ weplab-0.1.5/debian/changelog @@ -0,0 +1,14 @@ +weplab (0.1.5-2) unstable; urgency=low + + * Fix debian/watch (Closes: #453557). + * Improve debian/rules. + * Move homepage to new dpkg field. + + -- Adam Cécile (Le_Vert) Sun, 02 Dec 2007 14:39:50 +0100 + +weplab (0.1.5-1) unstable; urgency=low + + * Initial release (Closes: #384474). + + -- Adam Cécile (Le_Vert) Thu, 24 Aug 2006 16:14:52 +0200 + --- weplab-0.1.5.orig/debian/copyright +++ weplab-0.1.5/debian/copyright @@ -0,0 +1,43 @@ +This package was debianized by Adam Cécile (Le_Vert) on +Thu, 24 Aug 2006 16:14:52 +0200. + +It was downloaded from http://weplab.sourceforge.net/ + +Upstream Author: Jose Ignacio Sanchez + +Copyright: (C) 2004-2005 Jose Ignacio Sanchez Martin - Topo[LB] + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + + +The Debian packaging is (C) 2006, Adam Cécile (Le_Vert) +and is licensed under the GPL, see above. + + +"md5.c" is in the public domain. No copyright is claimed. See below :. + + This code has been heavily hacked by Tatu Ylonen to + make it compile on machines like Cray that don't have a 32 bit integer + type. + + This code implements the MD5 message-digest algorithm. + The algorithm is due to Ron Rivest. This code was + written by Colin Plumb in 1993, no copyright is claimed. + This code is in the public domain; do with it what you wish. --- weplab-0.1.5.orig/debian/watch +++ weplab-0.1.5/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/weplab/weplab-(.+)\.tar\.gz --- weplab-0.1.5.orig/debian/rules +++ weplab-0.1.5/debian/rules @@ -0,0 +1,75 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +CFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: configure + dh_testdir +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + ./configure --host=$(DEB_HOST_GNU_TYPE) \ + --build=$(DEB_BUILD_GNU_TYPE) \ + --prefix=/usr \ + --mandir=\$${prefix}/share/man \ + CFLAGS="$(CFLAGS)" \ + LDFLAGS="-Wl,-z,defs" + + +build: build-stamp +build-stamp: config.status + dh_testdir + $(MAKE) + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp \ + config.sub \ + config.guess + [ ! -f Makefile ] || $(MAKE) distclean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) install DESTDIR=$(CURDIR)/debian/weplab + + +binary-indep: build install +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_link + dh_strip + dh_compress + dh_fixperms + dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- weplab-0.1.5.orig/debian/compat +++ weplab-0.1.5/debian/compat @@ -0,0 +1 @@ +5 --- weplab-0.1.5.orig/debian/docs +++ weplab-0.1.5/debian/docs @@ -0,0 +1 @@ +README