From c5d69aed697e7d01e7535005ab73e78a92d2c328 Mon Sep 17 00:00:00 2001 From: McKay Marston Date: Tue, 2 Oct 2012 17:31:12 -0600 Subject: bitlbee: optional otr support Closes #15261. Signed-off-by: Adam Vandenberg --- Library/Formula/bitlbee.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Library/Formula') diff --git a/Library/Formula/bitlbee.rb b/Library/Formula/bitlbee.rb index 2b4558058..db2e65d23 100644 --- a/Library/Formula/bitlbee.rb +++ b/Library/Formula/bitlbee.rb @@ -6,10 +6,12 @@ class Bitlbee < Formula sha1 '74afdff87be49ce060771a6ae10d7643cd57b9b6' option 'purple', "Use libpurple for all communication with instant messaging networks" + option 'with-otr', "Build with otr (off the record) support" depends_on 'glib' depends_on 'gnutls' - depends_on 'libpurple' if build.include? 'purple' + depends_on 'libpurple' => :optional if build.include? 'purple' + depends_on 'libotr' => :optional if build.include? 'with-otr' def install # By default Homebrew will set ENV['LD'] to the same as ENV['CC'] which @@ -27,6 +29,7 @@ class Bitlbee < Formula "--ipsocket=#{var}/bitlbee/run/bitlbee.sock"] args << "--purple=1" if build.include? "purple" + args << "--otr=1" if build.include? "with-otr" system "./configure", *args -- cgit v1.2.3