Two of the newer tools that are part of the wireless tools (iwlist and iwgetid) aren't included in the wireless-tools package. I've attached a patch to the spec file that fixes this. :)
-- Ben Reser <[EMAIL PROTECTED]> http://ben.reser.org We tend to see all wars through the lens of the current conflict, and we mine history for lessons convenient to the present purpose. - Brian Hayes
--- wireless-tools.spec.orig Tue Apr 9 12:47:10 2002 +++ wireless-tools.spec Fri Jun 14 08:39:16 2002 @@ -3,7 +3,7 @@ License: GPL Name: wireless-tools Version: 23 -Release: 1mdk +Release: 2mdk URL: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html Source: http://pcmcia-cs.sourceforge.net/ftp/contrib/wireless_tools.%{version}.tar.bz2 Patch0: wireless_tools.22-glibc22.patch.bz2 @@ -34,11 +34,15 @@ mkdir -p $RPM_BUILD_ROOT/sbin mkdir -p $RPM_BUILD_ROOT%{_mandir}/man8 -for binary in iwconfig iwspy iwpriv ; do +for binary in iwconfig iwspy iwpriv iwlist; do install -m 755 $binary $RPM_BUILD_ROOT/sbin install -m 644 $binary.8 $RPM_BUILD_ROOT%{_mandir}/man8 done +# Temporarily here since in 23 iwgetid doesn't have a manpage +# When moving to 24 we should move it to the above for loop +install -m 755 iwgetid $RPM_BUILD_ROOT/sbin + %clean rm -rf $RPM_BUILD_ROOT @@ -49,6 +53,10 @@ %{_mandir}/man*/* %changelog +* Thu Jun 13 2002 Ben Reser <[EMAIL PROTECTED]> 23-2mdk +- added the missing binaries (iwlist and iwgetid) that are in the + newer versions. + * Tue Apr 9 2002 Frederic Lepied <[EMAIL PROTECTED]> 23-1mdk - 23
