2010-01-24 11:44:47 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Collectd < Formula
|
2010-01-24 11:44:47 +00:00
|
|
|
homepage 'http://collectd.org/'
|
2013-04-21 08:50:17 +00:00
|
|
|
url 'http://collectd.org/files/collectd-5.3.0.tar.gz'
|
|
|
|
sha256 'f84edbd78a00c8614956d44f2f53a435a8d981b62323b94fda88cfa50964dbc3'
|
2011-03-22 05:20:50 +00:00
|
|
|
|
2012-11-26 18:04:36 +00:00
|
|
|
# Will fail against Java 1.7
|
|
|
|
option "java", "Enable Java 1.6 support"
|
|
|
|
|
2011-03-22 05:20:50 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-06-01 10:23:56 +00:00
|
|
|
|
2012-04-18 16:00:48 +00:00
|
|
|
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
|
2012-04-18 16:00:48 +00:00
|
|
|
end
|
|
|
|
|
2010-01-24 11:44:47 +00:00
|
|
|
def install
|
2011-03-22 05:20:50 +00:00
|
|
|
# Use system Python; doesn't compile against 2.7
|
2012-04-21 03:24:17 +00:00
|
|
|
# -C enables the cache and resolves permissions errors
|
|
|
|
args = %W[-C
|
|
|
|
--disable-debug
|
|
|
|
--disable-dependency-tracking
|
|
|
|
--prefix=#{prefix}
|
|
|
|
--localstatedir=#{var}
|
|
|
|
--with-python=/usr/bin]
|
|
|
|
|
2012-09-05 04:04:01 +00:00
|
|
|
args << "--disable-embedded-perl" if MacOS.version == :leopard
|
2012-11-26 18:04:36 +00:00
|
|
|
args << "--disable-java" unless build.include? "java"
|
2010-10-16 15:22:16 +00:00
|
|
|
|
|
|
|
system "./configure", *args
|
2010-01-24 11:44:47 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2013-01-04 18:20:49 +00:00
|
|
|
|
|
|
|
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
|
2010-01-24 11:44:47 +00:00
|
|
|
end
|