author | mickeyl <mickeyl> | 2003-07-02 14:58:59 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-07-02 14:58:59 (UTC) |
commit | b7adf922a0c9def1ec6b1ae28d48475c4ea9dc39 (patch) (side-by-side diff) | |
tree | 39116c69d46aa3b3da78c818a2e67063708c8fdc | |
parent | fbf388246a16c1cd36e209ba24731929b93c21c0 (diff) | |
download | opie-b7adf922a0c9def1ec6b1ae28d48475c4ea9dc39.zip opie-b7adf922a0c9def1ec6b1ae28d48475c4ea9dc39.tar.gz opie-b7adf922a0c9def1ec6b1ae28d48475c4ea9dc39.tar.bz2 |
update
-rw-r--r-- | noncore/net/wellenreiter/README | 9 | ||||
-rwxr-xr-x | noncore/net/wellenreiter/makedist.sh | 2 |
2 files changed, 6 insertions, 5 deletions
diff --git a/noncore/net/wellenreiter/README b/noncore/net/wellenreiter/README index ec621b9..53a337a 100644 --- a/noncore/net/wellenreiter/README +++ b/noncore/net/wellenreiter/README @@ -1,67 +1,68 @@ /************************************************************************ /* W e l l e n r e i t e r I I /* =============================== /* -/* Version: April BETA +/* Version: 1.0-rc2 /************************************************************************ ---------------------------------------------------- -Release Notes for Opie-Wellenreiter Version BETA April 2003 +Release Notes for Wellenreiter II / July 2003 ---------------------------------------------------- ===================== = Supported Devices ===================== - HERMES chipset [ orinoco or hostap ], e.g. Lucent/Agere cards, ... - PRISM2 chipset [ orinoco or hostap ], e.g. D-Link, Buffallo, ... - SYMBOL/SPECTRUM chipset [ orinoco ], e.g. Symbol Spectrum 24, Socket Lowpower CF, ... - CISCO chipset - wlan-ng supported chipsets ===================== = Build ===================== -To compile a standalone Wellenreiter for X11, you need Qt3 and the development +To compile a standalone Wellenreiter II for X11, you need Qt3 and the development packages for Qt3, e.g. libqt3-devel. * Set $QTDIR to the appropriate directory (e.g. /usr/lib/qt3) * './build make' * as root, './build install' * Wellenreiter will be installed in /usr/local ===================== = Precompiled Binaries ===================== Precompiled binaries are available for the PDA-Version. Get them from http://opie.net.wox.org/wellenreiter/ +Sorry, RPMS are not yet available but will follow soon. ===================== = Run ===================== * Configure your device by pressing the configure toolbutton (to the right) * Start Sniffing by pressing the execute toolbutton which will be enabled, if your device has been properly configured. ===================== = Credits = ===================== Wellenreiter II is (C) 2002-2003 M-M-M Max Moser <max@remote-exploit.org> Martin J. Muench <mjm@remote-exploit.org> Michael Lauer <mickeyl@handhelds.org> ===================== = Links = ===================== -Wellenreiter: http://www.remote-exploit.org +Wellenreiter: http://www.wellenreiter.net Wellenreiter/Opie: http://opie.net.wox.org/wellenreiter Opie Project: http://opie.handhelds.org OpenZaurus Project: http://openzaurus.org diff --git a/noncore/net/wellenreiter/makedist.sh b/noncore/net/wellenreiter/makedist.sh index ee60c44..64098d0 100755 --- a/noncore/net/wellenreiter/makedist.sh +++ b/noncore/net/wellenreiter/makedist.sh @@ -5,49 +5,49 @@ TGZDIR=$PWD # script to make a .tgz distributable for the Wellenreiter X11 Standalone Version find . -name "*.o"|xargs rm -f find . -name "Makefile"|xargs rm -f find . -name "*moc*"|xargs rm -f #TMPFILE=`mktemp -d -q /tmp/build.XXXXXX` TMPFILE=/tmp/build #if [ $? -ne 0 ]; then # echo "$0: Can't create temp file, exiting..." # exit 1 #fi TMPDIR=$TMPFILE/wellenreiter$VERSION OUTPUT=$TMPDIR/output mkdir -p $TMPDIR/libopie2/opieui mkdir -p $TMPDIR/libopie2/opienet mkdir -p $TMPDIR/include/opie2 mkdir -p $OUTPUT/share/wellenreiter/pics mkdir -p $OUTPUT/share/wellenreiter cp -dfR gui $TMPDIR cp -dfR lib $TMPDIR cp -dfR build README wellenreiter.pro $TMPDIR cp -dfR $OPIEDIR/pics/wellenreiter/* $OUTPUT/share/wellenreiter/ -cp -dfR $OPIEDIR/share/wellenreiter/* $OUTPUT/share/wellenreiter/ +cp -dfR $OPIEDIR/etc/manufacturers $OUTPUT/share/wellenreiter/ # take care about sourcefiles FILES="libopie2/opienet/onetwork.h libopie2/opienet/onetwork.cpp \ libopie2/opienet/opcap.h libopie2/opienet/opcap.cpp libopie2/opienet/802_11_user.h \ libopie2/opienet/onetutils.h libopie2/opienet/onetutils.cpp \ libopie2/opienet/omanufacturerdb.h libopie2/opienet/omanufacturerdb.cpp \ libopie2/opieui/olistview.cpp libopie2/opieui/olistview.h" for i in $FILES do cp -dfR $OPIEDIR/$i $TMPDIR/$i done # make includes pushd $TMPDIR/include/opie2 ln -sf ../../libopie2/opieui/*.h . ln -sf ../../libopie2/opienet/*.h . popd find $TMPDIR -name "CVS"|xargs rm -rf pushd $TMPFILE tar czf $TGZDIR/wellenreiter$VERSION.tgz wellenreiter$VERSION popd |