aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bitlbee.rb
diff options
context:
space:
mode:
authorJack Nagel2014-11-06 17:11:41 -0600
committerJack Nagel2014-11-06 17:11:41 -0600
commitbd7921008cf3e1441702e89e9b755b0c8b155c51 (patch)
tree166f09b4f6d7915791b007a4d4d7e93067378946 /Library/Formula/bitlbee.rb
parent8ae42cb0c5726e7018d0db88a7f1e118f3eb83a8 (diff)
downloadhomebrew-bd7921008cf3e1441702e89e9b755b0c8b155c51.tar.bz2
Fix things that depended on finch
Diffstat (limited to 'Library/Formula/bitlbee.rb')
-rw-r--r--Library/Formula/bitlbee.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/bitlbee.rb b/Library/Formula/bitlbee.rb
index b569efa95..e154d64fb 100644
--- a/Library/Formula/bitlbee.rb
+++ b/Library/Formula/bitlbee.rb
@@ -11,14 +11,16 @@ class Bitlbee < Formula
sha1 "c21d19af516d959eb2a0b4b5ff534a66678d419d" => :lion
end
- option 'with-finch', "Use finch/libpurple for all communication with instant messaging networks"
+ option 'with-pidgin', "Use finch/libpurple for all communication with instant messaging networks"
option 'with-libotr', "Build with otr (off the record) support"
+ deprecated_option "with-finch" => "with-pidgin"
+
depends_on 'pkg-config' => :build
depends_on 'glib'
depends_on 'gnutls'
depends_on 'libgcrypt'
- depends_on 'finch' => :optional
+ depends_on 'pidgin' => :optional
depends_on 'libotr' => :optional
def install
@@ -29,7 +31,7 @@ class Bitlbee < Formula
"--config=#{var}/bitlbee/lib/",
"--ipsocket=#{var}/bitlbee/run/bitlbee.sock"]
- args << "--purple=1" if build.with? "finch"
+ args << "--purple=1" if build.with? "pidgin"
args << "--otr=1" if build.with? "libotr"
system "./configure", *args