1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
require "formula"
class NetSnmp < Formula
homepage "http://www.net-snmp.org/"
url "https://downloads.sourceforge.net/project/net-snmp/net-snmp/5.7.3/net-snmp-5.7.3.tar.gz"
sha1 "97dc25077257680815de44e34128d365c76bd839"
bottle do
sha1 "6b7c2019c338a70336de0e8e808fbb4787a34fe8" => :mavericks
sha1 "83cc6e796ebb6748e2c458a6bb54e99bb42c30e6" => :mountain_lion
end
depends_on "openssl"
depends_on :python => :optional
keg_only :provided_by_osx
def install
args = [
"--disable-debugging",
"--prefix=#{prefix}",
"--enable-ipv6",
"--with-defaults",
"--with-persistent-directory=#{var}/db/net-snmp",
"--with-logfile=#{var}/log/snmpd.log",
"--with-mib-modules=host ucd-snmp/diskio",
"--without-rpm",
"--without-kmem-usage",
"--disable-embedded-perl",
"--without-perl-modules",
]
if build.with? "python"
args << "--with-python-modules"
ENV["PYTHONPROG"] = `which python`
end
# https://sourceforge.net/p/net-snmp/bugs/2504/
ln_s "darwin13.h", "include/net-snmp/system/darwin14.h"
system "./configure", *args
system "make"
system "make", "install"
end
end
|