diff options
| author | Dominyk Tiller | 2014-11-27 02:15:11 +0000 |
|---|---|---|
| committer | Tim D. Smith | 2014-11-26 23:04:12 -0800 |
| commit | 4ccedcf346a09b305303577e9a5f36f86cb8e2f6 (patch) | |
| tree | a3d096f2bbb0f5207ceb8f31d821d92ada575546 /Library | |
| parent | ffa194cc7e97170a500f4606b35f79ecd5dc2ab5 (diff) | |
| download | homebrew-4ccedcf346a09b305303577e9a5f36f86cb8e2f6.tar.bz2 | |
wireshark: additional dependencies
Wireshark without d-bus results in Wireshark demanding it and will
crash on capture. There’s a bug report at seclists here:
http://seclists.org/wireshark/2014/Apr/146 - That remains an issue with
the latest release as well. Without d-bus, wireshark is not happy.
Closes #34485.
Signed-off-by: Tim D. Smith <git@tim-smith.us>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/wireshark.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/wireshark.rb b/Library/Formula/wireshark.rb index bafe20f7e..736fc6029 100644 --- a/Library/Formula/wireshark.rb +++ b/Library/Formula/wireshark.rb @@ -36,13 +36,14 @@ class Wireshark < Formula option "with-gtk+3", "Build the wireshark command with gtk+3" option "with-gtk+", "Build the wireshark command with gtk+" option "with-qt", "Build the wireshark-qt command (can be used with or without either GTK option)" - option "with-headers", "Install Wireshark library headers for plug-in developemnt" + option "with-headers", "Install Wireshark library headers for plug-in development" depends_on "pkg-config" => :build depends_on "glib" depends_on "gnutls" depends_on "libgcrypt" + depends_on "d-bus" depends_on "geoip" => :recommended depends_on "c-ares" => :recommended @@ -54,6 +55,7 @@ class Wireshark < Formula depends_on "gtk+3" => :optional depends_on "gtk+" => :optional depends_on "homebrew/dupes/libpcap" => :optional + depends_on "gnome-icon-theme" if build.with? "gtk+3" def install args = ["--disable-dependency-tracking", |
