class Bitlbee < Formula desc "IRC to other chat networks gateway" homepage "https://www.bitlbee.org/" url "https://get.bitlbee.org/src/bitlbee-3.4.2.tar.gz" sha256 "69c85554def74f314e3b6e390389a30b0e748f23ef37883e9d7545ee2c45ea57" head "https://github.com/bitlbee/bitlbee.git" bottle do sha256 "777b51738cea502198c6195e97b1710c2bf5718e46b45fe33910dea0db3ac82b" => :sierra sha256 "2ae0ff3d810ba31cca377a3803dc3275e7efca34c129a35c8cf0aa3321aa4dba" => :el_capitan sha256 "bb342d82cd1e019a98735f8d533e199e45c878fa727f7914dae7b90b022571c4" => :yosemite sha256 "31e194c41873e9b98a00e0496156c3111720b6eba0d7a1a6f728752fee2950d5" => :mavericks end option "with-pidgin", "Use finch/libpurple for all communication with instant messaging networks" option "with-libotr", "Build with otr (off the record) support" option "with-libevent", "Use libevent for the event-loop handling rather than glib." deprecated_option "with-finch" => "with-pidgin" depends_on "pkg-config" => :build depends_on "gettext" depends_on "glib" depends_on "gnutls" depends_on "libgcrypt" depends_on "pidgin" => :optional depends_on "libotr" => :optional depends_on "libevent" => :optional def install args = %W[ --prefix=#{prefix} --debug=0 --ssl=gnutls --pidfile=#{var}/bitlbee/run/bitlbee.pid --config=#{var}/bitlbee/lib/ --ipsocket=#{var}/bitlbee/run/bitlbee.sock ] args << "--purple=1" if build.with? "pidgin" args << "--otr=1" if build.with? "libotr" args << "--events=libevent" if build.with? "libevent" system "./configure", *args # This build depends on make running first. system "make" system "make", "install" # Install the dev headers too system "make", "install-dev" # This build has an extra step. system "make", "install-etc" (var/"bitlbee/run").mkpath (var/"bitlbee/lib").mkpath end plist_options :manual => "bitlbee -D" def plist; <<-EOS.undent Label #{plist_name} OnDemand ProgramArguments #{opt_sbin}/bitlbee ServiceDescription bitlbee irc-im proxy Sockets Listener SockFamily IPv4 SockProtocol TCP SockNodeName 127.0.0.1 SockServiceName 6667 SockType stream inetdCompatibility Wait EOS end test do shell_output("#{sbin}/bitlbee -V", 1) end end