Skip to content

Commit

Permalink
Add missing libgcrypt dependencies post-gnutls 3 update
Browse files Browse the repository at this point in the history
Closes Homebrew#16093.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
  • Loading branch information
Stefan authored and manboubird committed Nov 25, 2012
1 parent 632e06e commit fd6c1df
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions Library/Formula/bitlbee.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class Bitlbee < Formula

depends_on 'glib'
depends_on 'gnutls'
depends_on 'libgcrypt'
depends_on 'libpurple' => :optional if build.include? 'purple'
depends_on 'libotr' => :optional if build.include? 'with-otr'

Expand Down
3 changes: 2 additions & 1 deletion Library/Formula/inspircd.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ class Inspircd < Formula
option 'with-tre', 'Enable the TRE module'

depends_on 'pkg-config' => :build
depends_on 'gnutls' unless build.include? 'without-gnutls'
depends_on 'gnutls' => :recommended unless build.include? 'without-gnutls'
depends_on 'libgcrypt' unless build.include? 'without-gnutls'
depends_on 'openssl' if build.include? 'with-openssl'
depends_on 'pcre' if build.include? 'with-pcre'
depends_on 'tre' if build.include? 'with-tre'
Expand Down
1 change: 1 addition & 0 deletions Library/Formula/libimobiledevice.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class Libimobiledevice < Formula
depends_on 'libplist'
depends_on 'usbmuxd'
depends_on 'gnutls'
depends_on 'libgcrypt'

if build.head?
depends_on :automake
Expand Down
1 change: 1 addition & 0 deletions Library/Formula/libvirt.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class Libvirt < Formula
option 'without-libvirtd', 'Build only the virsh client and development libraries'

depends_on "gnutls"
depends_on 'libgcrypt'
depends_on "yajl"

if MacOS.version == :leopard
Expand Down
5 changes: 4 additions & 1 deletion Library/Formula/libxmlsec1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ class Libxmlsec1 < Formula
url 'http://www.aleksey.com/xmlsec/download/xmlsec1-1.2.18.tar.gz'
sha1 '740c3c791be838bf638651a3fe0e80c624c2ae0e'

option 'without-gnutls', 'Disable GnuTLS'

depends_on 'pkg-config' => :build
depends_on 'libxml2' # Version on 10.6/10.7 is too old
depends_on 'gnutls' => :optional
depends_on 'gnutls' => :recommended unless build.include? 'without-gnutls'
depends_on 'libgcrypt' unless build.include? 'without-gnutls'

# Add HOMEBREW_PREFIX/lib to dl load path
def patches; DATA; end
Expand Down
1 change: 1 addition & 0 deletions Library/Formula/pianobar.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ class Pianobar < Formula
depends_on 'mad'
depends_on 'faad2'
depends_on 'gnutls'
depends_on 'libgcrypt'
depends_on 'json-c'

fails_with :llvm do
Expand Down
1 change: 1 addition & 0 deletions Library/Formula/wireshark.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ class Wireshark < Formula

depends_on 'pkg-config' => :build
depends_on 'gnutls' => :optional
depends_on 'libgcrypt' => :optional
depends_on 'c-ares' => :optional
depends_on 'pcre' => :optional
depends_on 'glib'
Expand Down

0 comments on commit fd6c1df

Please sign in to comment.