homebrew-core/Formula/collectd.rb

67 lines
1.9 KiB
Ruby
Raw Normal View History

2014-05-19 18:47:38 +00:00
require "formula"
2011-03-10 05:11:03 +00:00
class Collectd < Formula
2014-05-19 18:47:38 +00:00
homepage "http://collectd.org/"
url "http://collectd.org/files/collectd-5.4.1.tar.bz2"
sha1 "cea47e3936ed081bd71efacf7ba825fc837dc347"
2011-03-22 05:20:50 +00:00
# Will fail against Java 1.7
option "java", "Enable Java 1.6 support"
option "debug", "Enable debug support"
2014-05-19 18:47:38 +00:00
depends_on "pkg-config" => :build
fails_with :clang do
build 318
cause <<-EOS.undent
Clang interacts poorly with the collectd-bundled libltdl,
causing configure to fail.
2012-06-04 01:50:21 +00:00
EOS
end
def install
2011-03-22 05:20:50 +00:00
# Use system Python; doesn't compile against 2.7
# -C enables the cache and resolves permissions errors
args = %W[-C
--disable-debug
--disable-dependency-tracking
--prefix=#{prefix}
--localstatedir=#{var}
2014-01-04 13:03:39 +00:00
--with-python=/usr/bin]
2013-07-10 02:30:15 +00:00
args << "--disable-embedded-perl" if MacOS.version <= :leopard
args << "--disable-java" unless build.include? "java"
args << "--enable-debug" if build.include? "debug"
system "./configure", *args
system "make install"
end
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>KeepAlive</key>
<true/>
<key>Label</key>
<string>#{plist_name}</string>
<key>ProgramArguments</key>
<array>
<string>#{sbin}/collectd</string>
<string>-f</string>
<string>-C</string>
<string>#{etc}/collectd.conf</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>StandardErrorPath</key>
<string>/usr/local/var/log/collectd.log</string>
<key>StandardOutPath</key>
<string>/usr/local/var/log/collectd.log</string>
</dict>
</plist>
EOS
end
end