homebrew-core/Formula/vnstat.rb
2015-11-09 20:05:51 +00:00

112 lines
3.5 KiB
Ruby

class Vnstat < Formula
desc "Console-based network traffic monitor"
homepage "http://humdi.net/vnstat/"
url "http://humdi.net/vnstat/vnstat-1.14.tar.gz"
sha256 "f8462a47d85d0890493dc9eaeafbc725ae631aa5b103fb7f8af4ddb2314e8386"
head "https://github.com/vergoh/vnstat.git"
bottle do
cellar :any
revision 1
sha256 "649f48180888b9dc1cb3fd60fac3d1dcdf56ff5a0f2b57a831c08fcad201b0ab" => :el_capitan
sha256 "ef27ae97c7a698631fef3f78cbe334d7347d40e06e697f012ab9fa925b7daf93" => :yosemite
sha256 "80d5c778de2d86d77761abf2a2eaa53707989287ce157085f11cad350d7ef0e1" => :mavericks
end
depends_on "gd"
def install
inreplace "src/cfg.c", "/etc/vnstat.conf", "#{etc}/vnstat.conf"
inreplace "man/vnstat.1" do |s|
s.gsub! "/etc/vnstat.conf", "#{etc}/vnstat.conf"
s.gsub! "/var/lib/vnstat", "#{var}/db/vnstat"
end
inreplace "man/vnstatd.1" do |s|
s.gsub! "/etc/vnstat.conf", "#{etc}/vnstat.conf"
s.gsub! "/var/lib/vnstat", "#{var}/db/vnstat"
s.gsub! "/var/log/vnstat.log", "#{var}/log/vnstat/vnstat.log"
s.gsub! "/var/run/vnstat.pid", "#{var}/run/vnstat/vnstat.pid"
end
inreplace "man/vnstati.1" do |s|
s.gsub! "/etc/vnstat.conf", "#{etc}/vnstat.conf"
s.gsub! "/var/lib/vnstat", "#{var}/db/vnstat"
end
inreplace "man/vnstat.conf.5", "/etc/vnstat.conf", "#{etc}/vnstat.conf"
inreplace "cfg/vnstat.conf" do |c|
c.gsub! 'Interface "eth0"', %(Interface "en0")
c.gsub! 'DatabaseDir "/var/lib/vnstat"', %(DatabaseDir "#{var}/db/vnstat")
c.gsub! 'LogFile "/var/log/vnstat/vnstat.log"', %(LogFile "#{var}/log/vnstat/vnstat.log")
c.gsub! 'PidFile "/var/run/vnstat/vnstat.pid"', %(PidFile "#{var}/run/vnstat/vnstat.pid")
end
(var/"db/vnstat").mkpath
system "make", "all", "-C", "src", "CFLAGS=#{ENV.cflags}", "CC=#{ENV.cc}"
etc.install "cfg/vnstat.conf"
bin.install "src/vnstat", "src/vnstatd", "src/vnstati"
man1.install "man/vnstat.1", "man/vnstatd.1", "man/vnstati.1"
man5.install "man/vnstat.conf.5"
end
plist_options :startup => true
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>Label</key>
<string>#{plist_name}</string>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/vnstatd</string>
<string>--nodaemon</string>
<string>--config</string>
<string>#{etc}/vnstat.conf</string>
</array>
<key>KeepAlive</key>
<true/>
<key>RunAtLoad</key>
<true/>
<key>UserName</key>
<string>$USER</string>
<key>GroupName</key>
<string>staff</string>
<key>WorkingDirectory</key>
<string>#{var}</string>
<key>ProcessType</key>
<string>Background</string>
</dict>
</plist>
EOS
end
def post_install
inreplace prefix/"homebrew.mxcl.vnstat.plist", "$USER", ENV["USER"]
end
def caveats; <<-EOS.undent
To monitor interfaces other than "en0" edit #{etc}/vnstat.conf
EOS
end
test do
cp etc/"vnstat.conf", testpath
inreplace "vnstat.conf", "/usr/local/var", testpath/"var"
(testpath/"var/db/vnstat").mkpath
begin
stat = IO.popen("#{bin}/vnstatd --nodaemon --config vnstat.conf")
sleep 1
ensure
Process.kill "SIGINT", stat.pid
Process.wait stat.pid
end
assert_match "Info: Monitoring:", stat.read
end
end