Your message dated Sat, 28 Jul 2012 18:32:10 +0000
with message-id <[email protected]>
and subject line Bug#642698: fixed in aircrack-ng 1:1.1-5
has caused the Debian Bug report #642698,
regarding GNU/kFreeBSD support
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
642698: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=642698
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: aircrack-ng
Version: 1:1.1-1.1
Severity: important
Tags: patch
User: [email protected]
Usertags: kfreebsd

This patch adds support for GNU/kFreeBSD to aircrack-ng.

I've verified that at least airodump-ng works (but I didn't break into^W^W
audit security of any of my neighbours' WLANs yet).

I've already submitted the relevant parts to upstream:

  http://trac.aircrack-ng.org/ticket/944
  http://trac.aircrack-ng.org/ticket/945

-- System Information:
Debian Release: 6.0.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: kfreebsd-amd64 (x86_64)

Kernel: kFreeBSD 8.1-1-amd64
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages aircrack-ng depends on:
ii  libc0.1                 2.11.2-10        Embedded GNU C Library: Shared lib
ii  libsqlite3-0            3.7.3-1          SQLite 3 shared library
ii  libssl0.9.8             0.9.8o-4squeeze2 SSL shared libraries
ii  zlib1g                  1:1.2.3.4.dfsg-3 compression library - runtime

aircrack-ng recommends no packages.

aircrack-ng suggests no packages.

-- no debconf information
=== modified file 'common.mak'
--- common.mak	2011-09-24 15:24:07 +0000
+++ common.mak	2011-09-24 15:27:39 +0000
@@ -2,7 +2,7 @@ ifndef TOOL_PREFIX
 TOOL_PREFIX	=
 endif
 ifndef OSNAME
-OSNAME		= $(shell uname -s | sed -e 's/.*CYGWIN.*/cygwin/g')
+OSNAME		= $(shell uname -s | sed -e 's/.*CYGWIN.*/cygwin/g' -e 's,/,-,g')
 endif
 ifndef SQLITE
 SQLITE		= false

=== modified file 'debian/control'
--- debian/control	2011-09-24 15:24:07 +0000
+++ debian/control	2011-09-24 15:31:44 +0000
@@ -4,12 +4,12 @@ Priority: optional
 Maintainer: Adam Cécile (Le_Vert) <[email protected]>
 Uploaders: Samuel Mimram <[email protected]>
 Homepage: http://www.aircrack-ng.org/
-Build-Depends: debhelper (>= 5), libpcap0.8-dev, libssl-dev, libsqlite3-dev (>= 3.4), libnl-dev (>= 1.1)
+Build-Depends: debhelper (>= 5), libpcap0.8-dev, libssl-dev, libsqlite3-dev (>= 3.4), libnl-dev (>= 1.1) [linux-any]
 Standards-Version: 3.8.4
 
 Package: aircrack-ng
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, wireless-tools, iw
+Depends: ${shlibs:Depends}, ${misc:Depends}, wireless-tools [linux-any], iw [linux-any]
 Description: wireless WEP/WPA cracking utilities
  aircrack-ng is an 802.11a/b/g WEP/WPA cracking program that can recover a
  40-bit, 104-bit, 256-bit or 512-bit WEP key once enough encrypted packets have

=== modified file 'scripts/Makefile'
--- scripts/Makefile	2011-09-24 15:24:07 +0000
+++ scripts/Makefile	2011-09-24 16:54:51 +0000
@@ -1,7 +1,7 @@
 AC_ROOT		= ..
 include		$(AC_ROOT)/common.mak
 
-SCRIPTS         = airmon-ng airdriver-ng airodump-ng-oui-update
+SCRIPTS         = airdriver-ng airodump-ng-oui-update
 
 default: all
 
@@ -10,6 +10,13 @@ all:
 	
 install:
 	install -m 755 $(SCRIPTS) $(DESTDIR)$(sbindir)
+ifeq ($(OSNAME), Linux)
+	install -m 755 airmon-ng $(DESTDIR)$(sbindir)/airmon-ng
+endif
+ifeq ($(filter FreeBSD GNU-kFreeBSD, $(OSNAME)),)
+else
+	install -m 755 airmon-ng.freebsd $(DESTDIR)$(sbindir)/airmon-ng
+endif
 
 uninstall:
 	-rm -f $(DESTDIR)$(sbindir)/airmon-ng

=== added file 'scripts/airmon-ng.freebsd'
--- scripts/airmon-ng.freebsd	1970-01-01 00:00:00 +0000
+++ scripts/airmon-ng.freebsd	2011-09-24 16:54:25 +0000
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+cat << EOF
+On $(uname), it is not necessary to use airmon-ng to enable the monitor
+mode of your wireless card. Instead, you need to specify this mode when
+creating your wlan device. For example:
+
+        ifconfig wlan0 create wlandev ath0 wlanmode monitor
+
+EOF
+
+exit 0

=== modified file 'src/osdep/Makefile'
--- src/osdep/Makefile	2011-09-24 15:24:07 +0000
+++ src/osdep/Makefile	2011-09-24 15:28:01 +0000
@@ -41,6 +41,11 @@ all:
 	$(RANLIB) $(LIB)
 	touch $(@)
 
+.os.GNU-kFreeBSD: $(OBJS_FBSD)
+	$(AR) cru $(LIB) $(OBJS_FBSD)
+	$(RANLIB) $(LIB)
+	touch $(@)
+
 .os.OpenBSD: $(OBJS_OBSD)
 	$(AR) cru $(LIB) $(OBJS_OBSD)
 	$(RANLIB) $(LIB)

=== modified file 'src/osdep/freebsd.c'
--- src/osdep/freebsd.c	2011-09-24 15:24:07 +0000
+++ src/osdep/freebsd.c	2011-09-24 15:28:34 +0000
@@ -560,7 +560,7 @@ struct wif *wi_open_osdep(char *iface)
 
 int get_battery_state(void)
 {
-#if defined(__FreeBSD__)
+#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
     int value;
     size_t len;
 


--- End Message ---
--- Begin Message ---
Source: aircrack-ng
Source-Version: 1:1.1-5

We believe that the bug you reported is fixed in the latest version of
aircrack-ng, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Carlos Alberto Lopez Perez <[email protected]> (supplier of updated aircrack-ng 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Sat, 28 Jul 2012 01:41:14 +0200
Source: aircrack-ng
Binary: aircrack-ng
Architecture: source amd64
Version: 1:1.1-5
Distribution: unstable
Urgency: low
Maintainer: Carlos Alberto Lopez Perez <[email protected]>
Changed-By: Carlos Alberto Lopez Perez <[email protected]>
Description: 
 aircrack-ng - wireless WEP/WPA cracking utilities
Closes: 642698
Changes: 
 aircrack-ng (1:1.1-5) unstable; urgency=low
 .
   * Add 018-workaround-681113-kfreebsd.diff (Really closes: #642698)
Checksums-Sha1: 
 27ba5bb671e4f4211284e3445a30d3fc93198cdb 1881 aircrack-ng_1.1-5.dsc
 36bbc62fdf2e1918321a9f9def6b0674d34f354b 244792 aircrack-ng_1.1-5.debian.tar.gz
 2c99c53504b9e45f429e2c84e8d542a217afed89 867130 aircrack-ng_1.1-5_amd64.deb
Checksums-Sha256: 
 8aedd9ae6df15c5b2ecf6e53102668ea7a3b645b8fa0938e166c2aec387ee795 1881 
aircrack-ng_1.1-5.dsc
 121c59f0e121b78b3c23d4f7418200e74e3279b14c43642730c36509b487dde7 244792 
aircrack-ng_1.1-5.debian.tar.gz
 47a9b7c5e676141ccd7f924baaa51e653040499bca6d43dbb1db87b832aa39c0 867130 
aircrack-ng_1.1-5_amd64.deb
Files: 
 f916326f9cefa470144275bdd6510c60 1881 net optional aircrack-ng_1.1-5.dsc
 4f8d90111d64da33b6596e898efc1431 244792 net optional 
aircrack-ng_1.1-5.debian.tar.gz
 973a82f96a1d5097ce3c0e84cc2fd5ab 867130 net optional 
aircrack-ng_1.1-5_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCgAGBQJQFC51AAoJEK8ig6p24qx7SlgQAJczrijpGkSJhjJmQ/XGCaM7
jXuB9rAbkh85s595ClgXGlrkLIEPwZyH7LqN0Jv5SZQHWkpMSvlvqOseJBm7u0h4
k9qsPZ2FHFZAufDwFr2fjeQCHGMmB+Npl++h9iFGmeiY/6O8eucyxclce6rGsnOk
iR4yW3QldPuT15efFvNgCBx8NhFx62wKU0fD6Ut9LVZe/hVQLOnv0aKqts0Mv1xU
/5shSiPsUNc+aWdM53dxnbAYjLGPw6xWNWb0Zm5VRu08O1Gzok+uObCXBI5sm/mH
IZ5u6ZTZqUFveLMtSXHMb6GjynCNTitu2eySoek4mPQzDu0aLTUL+TiZGzk/2PjA
jOyg7YmVNYDrGcSZEjBv/H5bolakISHtK3/sEebJFkJZuUboOJoiWKe1RN5v5tlb
RHP2F1B5SZOp/bzqXmFjkI2NCmkVwaNgNjUcF4qIUQJ/tsNvpEcuqoLp0i1Osk2u
sGTCVLgrR8tPzVOgZTq/O9zk16Kzcpovwk0Y+cuAT44AZTDSiYkrevvgocV7N7iM
wXBF5MrVb5l0EPreB2ecDSzPB4wM+GeoZ1ehR6mr5o3ccwCws3/1mxliqc9VmfQW
Ui88P7REa6JP1oNB1MJbP7ZweoufkbwsLdrcLZ8yU6SegHnmYhNeAj6xeC+5BKBf
vavknwE77kX/biCilFLb
=pG5h
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to