class Ganglia < Formula desc "Ganglia monitoring client" homepage "http://ganglia.sourceforge.net/" url "https://downloads.sourceforge.net/project/ganglia/ganglia%20monitoring%20core/3.7.1/ganglia-3.7.1.tar.gz" sha256 "e735a6218986a0ff77c737e5888426b103196c12dc2d679494ca9a4269ca69a3" bottle do sha256 "2fa8bdba3a209fb748b75ca2ac577dc73ceecf3119aae297ded3f8e52d8bf5c5" => :yosemite sha256 "1d0c19c31b897552093cbad7e278c27eb04c0f3b624b81fa81546dfe45501a13" => :mavericks sha256 "cf31c6f82ffed72b8b3b10c2783218390ead29608a3fed16d7511d406eb7859f" => :mountain_lion end head do url "https://github.com/ganglia/monitor-core.git" depends_on "automake" => :build depends_on "autoconf" => :build depends_on "libtool" => :build end conflicts_with "coreutils", :because => "both install `gstat` binaries" depends_on "pkg-config" => :build depends_on :apr => :build depends_on "confuse" depends_on "pcre" depends_on "rrdtool" def install if build.head? inreplace "bootstrap", "libtoolize", "glibtoolize" inreplace "libmetrics/bootstrap", "libtoolize", "glibtoolize" system "./bootstrap" end inreplace "configure", %(varstatedir="/var/lib"), %(varstatedir="#{var}/lib") system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--sbindir=#{bin}", "--sysconfdir=#{etc}", "--mandir=#{man}", "--with-gmetad", "--with-libpcre=#{Formula["pcre"].opt_prefix}" system "make", "install" # Generate the default config file system "#{bin}/gmond -t > #{etc}/gmond.conf" unless File.exist? "#{etc}/gmond.conf" end def post_install (var/"lib/ganglia/rrds").mkpath end def caveats; <<-EOS.undent If you didn't have a default config file, one was created here: #{etc}/gmond.conf EOS end test do begin pid = fork do exec bin/"gmetad", "--pid-file=#{testpath}/pid" end sleep 2 File.exist? testpath/"pid" ensure Process.kill "TERM", pid Process.wait pid end end end