class Collectd < Formula desc "Statistics collection and monitoring daemon" homepage "https://collectd.org/" stable do url "https://collectd.org/files/collectd-5.7.0.tar.bz2" mirror "https://storage.googleapis.com/collectd-tarballs/collectd-5.7.0.tar.bz2" sha256 "25a05fbdc6baad571554342bbac6141928bf95a47fc60ee3b32e46d0c89ef2b2" end bottle do sha256 "863ccf25e849fa6c58deba5fa1fdeb7548feeb05f3ee88917943e986ab1d24de" => :sierra sha256 "63c33d657699651a778f817cba103a96b785319cc521be732ff5a9efda8ea535" => :el_capitan sha256 "535f26c7857194c8e6fb9b33acabb55d19f4a7d4b8dcf2482037803f81f20fe2" => :yosemite end head do url "https://github.com/collectd/collectd.git" depends_on "libtool" => :build depends_on "automake" => :build depends_on "autoconf" => :build end option "with-java", "Enable Java support" option "with-python", "Enable Python support" option "with-protobuf-c", "Enable write_riemann via protobuf-c support" option "with-debug", "Enable debug support" deprecated_option "java" => "with-java" deprecated_option "debug" => "with-debug" depends_on "pkg-config" => :build depends_on "protobuf-c" => :optional depends_on :java => :optional depends_on :python => :optional depends_on "net-snmp" fails_with :clang do build 318 cause <<-EOS.undent Clang interacts poorly with the collectd-bundled libltdl, causing configure to fail. EOS end def install args = %W[ --disable-debug --disable-dependency-tracking --prefix=#{prefix} --localstatedir=#{var} ] args << "--disable-embedded-perl" if MacOS.version <= :leopard args << "--disable-java" if build.without? "java" args << "--enable-python" if build.with? "python" args << "--enable-write_riemann" if build.with? "protobuf-c" args << "--enable-debug" if build.with? "debug" system "./build.sh" if build.head? system "./configure", *args system "make", "install" end plist_options :manual => "#{HOMEBREW_PREFIX}/sbin/collectd -f -C #{HOMEBREW_PREFIX}/etc/collectd.conf" def plist; <<-EOS.undent KeepAlive Label #{plist_name} ProgramArguments #{sbin}/collectd -f -C #{etc}/collectd.conf RunAtLoad StandardErrorPath #{var}/log/collectd.log StandardOutPath #{var}/log/collectd.log EOS end test do begin pid = fork { exec sbin/"collectd", "-f" } assert shell_output("nc -u -w 2 127.0.0.1 25826", 0) ensure Process.kill("SIGINT", pid) Process.wait(pid) end end end