aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorIan Gallagher2010-11-14 19:14:53 -0800
committerAdam Vandenberg2010-11-26 09:37:09 -0800
commit4bb7ab0b67bd6dae8976809bcbc8a84d48f2b90f (patch)
tree928f5017371958c0577d2df7fb27b3d6e7e4b50e /Library
parent83857d6bb53e11f761536880dbe1c3291a866cc9 (diff)
downloadhomebrew-4bb7ab0b67bd6dae8976809bcbc8a84d48f2b90f.tar.bz2
Update Kismet brew to 2010-07-R1
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/kismet.rb21
1 files changed, 13 insertions, 8 deletions
diff --git a/Library/Formula/kismet.rb b/Library/Formula/kismet.rb
index ef769c509..229bf4bf4 100644
--- a/Library/Formula/kismet.rb
+++ b/Library/Formula/kismet.rb
@@ -1,10 +1,10 @@
require 'formula'
class Kismet <Formula
- url 'http://www.kismetwireless.net/code/kismet-2010-01-R1.tar.gz'
- version '2010-01-R1'
+ url 'http://www.kismetwireless.net/code/kismet-2010-07-R1.tar.gz'
+ version '2010-07-R1'
homepage 'http://www.kismetwireless.net'
- md5 'a6d6edcf65d5bb2cb5de6472bcc16f19'
+ sha256 'b1bae7a97e7a904bf620f285aa0d62ebc1fd3b54b671fbca125405036f949e80'
def install
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}", "--sysconfdir=#{etc}"
@@ -16,12 +16,17 @@ class Kismet <Formula
system "make install"
end
- def caveats
- <<-EOS.undent
- Read #{doc}/README and edit #{etc}/kismet.conf
+ def caveats; <<-EOS.undent
+ Read http://www.kismetwireless.net/documentation.shtml and edit
+ #{etc}/kismet.conf
+ as needed.
- Set source=darwin,en1,airport_extreme
- and replace your_user_here in suiduser with your username
+ * SUID Root functionality does not work, you will have to run this as
+ root, e.g. via `sudo`. Do so at your own risk.
+ * This version can be configured interactively when it is run (listen
+ interface, etc).
+ * You may add the line 'ncsource=en1:name=AirPort' to kismet.conf to avoid
+ prompting at startup (assuming en1 is your AirPort card).
EOS
end
end