2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-06 22:54:52 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Wireshark < Formula
|
2011-06-08 22:35:19 +00:00
|
|
|
url 'http://wiresharkdownloads.riverbed.com/wireshark/src/wireshark-1.6.0.tar.bz2'
|
|
|
|
md5 '9f9314c89bf1c8b440a7909884838cfd'
|
2010-04-27 15:32:57 +00:00
|
|
|
homepage 'http://www.wireshark.org'
|
2009-06-06 22:54:52 +00:00
|
|
|
|
2010-04-27 15:32:57 +00:00
|
|
|
depends_on 'gnutls' => :optional
|
|
|
|
depends_on 'pcre' => :optional
|
2010-01-13 13:50:24 +00:00
|
|
|
depends_on 'glib'
|
2010-11-03 06:16:44 +00:00
|
|
|
depends_on 'gtk+' if ARGV.include? "--with-x"
|
|
|
|
|
|
|
|
def options
|
|
|
|
[["--with-x", "Include X11 support"]]
|
|
|
|
end
|
2010-11-04 04:32:25 +00:00
|
|
|
|
2009-06-06 22:54:52 +00:00
|
|
|
def install
|
2010-11-03 06:16:44 +00:00
|
|
|
args = ["--disable-dependency-tracking", "--prefix=#{prefix}"]
|
|
|
|
|
|
|
|
# actually just disables the GTK GUI
|
|
|
|
args << "--disable-wireshark" if not ARGV.include? "--with-x"
|
|
|
|
|
|
|
|
system "./configure", *args
|
2010-04-27 15:32:57 +00:00
|
|
|
system "make"
|
|
|
|
ENV.j1 # Install failed otherwise.
|
2009-06-06 22:54:52 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2011-03-03 02:23:35 +00:00
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
If your list of available capture interfaces is empty
|
|
|
|
(default OS X behavior), try the following commands:
|
|
|
|
|
|
|
|
wget https://bugs.wireshark.org/bugzilla/attachment.cgi?id=3373 -O ChmodBPF.tar.gz
|
|
|
|
tar zxvf ChmodBPF.tar.gz
|
|
|
|
open ChmodBPF/Install\\ ChmodBPF.app
|
|
|
|
|
|
|
|
This adds a launch daemon that changes the permissions of your BPF
|
|
|
|
devices so that all users in the 'admin' group - all users with
|
|
|
|
'Allow user to administer this computer' turned on - have both read
|
|
|
|
and write access to those devices.
|
|
|
|
|
|
|
|
See bug report:
|
|
|
|
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3760
|
|
|
|
EOS
|
|
|
|
end
|
2009-06-06 22:54:52 +00:00
|
|
|
end
|
2010-11-03 06:16:44 +00:00
|
|
|
|