class Collectd < Formula desc "Statistics collection and monitoring daemon" homepage "https://collectd.org/" stable do url "https://collectd.org/files/collectd-5.5.1.tar.bz2" mirror "http://pkgs.fedoraproject.org/repo/pkgs/collectd/collectd-5.5.1.tar.bz2/fd24b947cef9351ce3e2d6d2a0762e18/collectd-5.5.1.tar.bz2" sha256 "f9c5d526e1f0429a7db1ccd90bdf9e23923a2fd43b7285cfda8f0341e5c0bc3f" end bottle do sha256 "2d0ea64e88be3e27d28e8419c88eda50180d82b4070c4a819bfa54fecad3030d" => :el_capitan sha256 "40e0865b2e465387ead14eedb6ae5f639a60a00e0aaa36380ef9f23966772d4a" => :yosemite sha256 "2626142f0ec513f28faac27c1c81af720a6da37980b994d918fef7ed08da3b16" => :mavericks 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-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 "openssl" 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-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 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