From d9efa5e0230207fb8f5fe1ffac0bceaed93b309e Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Thu, 13 Jun 2013 09:29:24 -0700 Subject: wireshark: always build with SSl support --- Library/Formula/wireshark.rb | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) (limited to 'Library') diff --git a/Library/Formula/wireshark.rb b/Library/Formula/wireshark.rb index 62e966a34..9213fd04a 100644 --- a/Library/Formula/wireshark.rb +++ b/Library/Formula/wireshark.rb @@ -8,36 +8,33 @@ class Wireshark < Formula option 'with-x', 'Include X11 support' option 'with-qt', 'Use QT for GUI instead of GTK+' - option 'with-ssl', 'Enable SSL support' depends_on 'pkg-config' => :build + + depends_on 'glib' + depends_on 'gnutls2' + depends_on 'libgcrypt' + + depends_on 'geoip' => :recommended + depends_on 'c-ares' => :optional - depends_on 'pcre' => :optional - depends_on 'qt' => :optional depends_on 'lua' => :optional + depends_on 'pcre' => :optional depends_on 'portaudio' => :optional - depends_on 'glib' - depends_on 'geoip' => :recommended + depends_on 'qt' => :optional if build.with? 'x' depends_on :x11 depends_on 'gtk+' end - if build.with? 'ssl' - depends_on 'gnutls2' - depends_on 'libgcrypt' - end - def install - args = ["--disable-dependency-tracking", "--prefix=#{prefix}"] - - args << '--with-qt' if build.with? 'qt' + args = ["--disable-dependency-tracking", + "--prefix=#{prefix}", + "--with-gnutls", + "--with-ssl"] - if build.with? 'ssl' - args << '--with-gnutls' - args << '--with-ssl' - end + args << "--with-qt" if build.with? "qt" system "./configure", *args system "make" -- cgit v1.2.3