2010-06-29 21:48:55 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Bitlbee < Formula
|
2010-06-29 21:48:55 +00:00
|
|
|
homepage 'http://www.bitlbee.org/'
|
2013-12-06 05:15:45 +00:00
|
|
|
url 'http://get.bitlbee.org/src/bitlbee-3.2.1.tar.gz'
|
|
|
|
sha1 '954471ab87206826c072f31b3def40a1be5a78f5'
|
2014-03-06 15:28:03 +00:00
|
|
|
revision 2
|
2010-06-29 21:48:55 +00:00
|
|
|
|
2014-06-14 19:46:47 +00:00
|
|
|
bottle do
|
|
|
|
sha1 "87aaac8542c0e5fcfaa81a5d0464d48043cf0389" => :mavericks
|
|
|
|
sha1 "7aa598b16ce35182e9c061dbc27a1a08e3462c6f" => :mountain_lion
|
|
|
|
sha1 "af0cdf96d4a5e718f191ecdc7cda133e8849bff0" => :lion
|
|
|
|
end
|
|
|
|
|
2014-02-25 21:18:12 +00:00
|
|
|
option 'with-finch', "Use finch/libpurple for all communication with instant messaging networks"
|
2013-02-01 03:19:17 +00:00
|
|
|
option 'with-libotr', "Build with otr (off the record) support"
|
2012-08-09 05:14:02 +00:00
|
|
|
|
2012-12-02 07:19:29 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2013-01-21 20:30:38 +00:00
|
|
|
depends_on 'glib'
|
2010-06-29 21:48:55 +00:00
|
|
|
depends_on 'gnutls'
|
2012-11-15 18:27:17 +00:00
|
|
|
depends_on 'libgcrypt'
|
2013-07-06 03:14:06 +00:00
|
|
|
depends_on 'finch' => :optional
|
2013-02-01 03:19:17 +00:00
|
|
|
depends_on 'libotr' => :optional
|
2010-06-29 21:48:55 +00:00
|
|
|
|
2014-05-13 18:44:18 +00:00
|
|
|
if build.with? "libotr"
|
|
|
|
# Head versions of bitlbee support otr4, but there is no release yet.
|
|
|
|
patch do
|
2014-05-16 14:15:21 +00:00
|
|
|
url "http://ftp.de.debian.org/debian/pool/main/b/bitlbee/bitlbee_3.2.1+otr4-1.diff.gz"
|
|
|
|
sha1 "a05af5ec8912f85b876f90e75a78dc4f98917ead"
|
2014-05-13 18:44:18 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-06-29 21:48:55 +00:00
|
|
|
def install
|
2011-04-26 01:30:13 +00:00
|
|
|
args = ["--prefix=#{prefix}",
|
|
|
|
"--debug=0",
|
|
|
|
"--ssl=gnutls",
|
|
|
|
"--pidfile=#{var}/bitlbee/run/bitlbee.pid",
|
|
|
|
"--config=#{var}/bitlbee/lib/",
|
|
|
|
"--ipsocket=#{var}/bitlbee/run/bitlbee.sock"]
|
|
|
|
|
2014-02-25 21:18:12 +00:00
|
|
|
args << "--purple=1" if build.with? "finch"
|
2013-02-01 03:19:17 +00:00
|
|
|
args << "--otr=1" if build.with? "libotr"
|
2011-04-26 01:30:13 +00:00
|
|
|
|
|
|
|
system "./configure", *args
|
|
|
|
|
2010-06-29 21:48:55 +00:00
|
|
|
# This build depends on make running first.
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
2012-08-29 15:52:44 +00:00
|
|
|
# Install the dev headers too
|
|
|
|
system "make install-dev"
|
2010-06-29 21:48:55 +00:00
|
|
|
# This build has an extra step.
|
|
|
|
system "make install-etc"
|
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
(var+"bitlbee/run").mkpath
|
|
|
|
(var+"bitlbee/lib").mkpath
|
2010-06-29 21:48:55 +00:00
|
|
|
end
|
2014-06-04 21:56:52 +00:00
|
|
|
|
|
|
|
plist_options :manual => "bitlbee -D"
|
|
|
|
|
|
|
|
def plist; <<-EOS.undent
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
<plist version="1.0">
|
|
|
|
<dict>
|
|
|
|
<key>Label</key>
|
|
|
|
<string>#{plist_name}</string>
|
|
|
|
<key>OnDemand</key>
|
|
|
|
<true/>
|
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
|
|
|
<string>#{opt_sbin}/bitlbee</string>
|
|
|
|
</array>
|
|
|
|
<key>ServiceDescription</key>
|
|
|
|
<string>bitlbee irc-im proxy</string>
|
|
|
|
<key>Sockets</key>
|
|
|
|
<dict>
|
|
|
|
<key>Listener</key>
|
|
|
|
<dict>
|
|
|
|
<key>SockFamily</key>
|
|
|
|
<string>IPv4</string>
|
|
|
|
<key>SockProtocol</key>
|
|
|
|
<string>TCP</string>
|
|
|
|
<key>SockServiceName</key>
|
|
|
|
<string>6667</string>
|
|
|
|
<key>SockType</key>
|
|
|
|
<string>stream</string>
|
|
|
|
</dict>
|
|
|
|
</dict>
|
|
|
|
<key>inetdCompatibility</key>
|
|
|
|
<dict>
|
|
|
|
<key>Wait</key>
|
|
|
|
<false/>
|
|
|
|
</dict>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOS
|
|
|
|
end
|
2010-06-29 21:48:55 +00:00
|
|
|
end
|