84 lines
2.6 KiB
Ruby
84 lines
2.6 KiB
Ruby
class Zabbix < Formula
|
|
desc "Availability and monitoring solution"
|
|
homepage "https://www.zabbix.com/"
|
|
url "https://downloads.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/3.4.8/zabbix-3.4.8.tar.gz"
|
|
sha256 "cec14993d1ec2c9d8c51f6608c9408620f27174db92edc2347bafa7b841ccc07"
|
|
|
|
bottle do
|
|
sha256 "469f7d8a02308103faa0e1134dcd9fd6531e51c3ad8f580c15c7cb3af20be190" => :high_sierra
|
|
sha256 "bab5f42c0cae540c05b753296208cf669ffdac61a7b3a3a9cc8f776920e5697d" => :sierra
|
|
sha256 "f6993764ccaf70ceb9059cf5fdccb3691975f17c074b51b103b01b700acfa663" => :el_capitan
|
|
end
|
|
|
|
option "with-mysql", "Use Zabbix Server with MySQL library instead PostgreSQL."
|
|
option "with-sqlite", "Use Zabbix Server with SQLite library instead PostgreSQL."
|
|
option "without-server-proxy", "Install only the Zabbix Agent without Server and Proxy."
|
|
|
|
deprecated_option "agent-only" => "without-server-proxy"
|
|
|
|
depends_on "openssl"
|
|
depends_on "pcre"
|
|
|
|
if build.with? "server-proxy"
|
|
depends_on "mysql" => :optional
|
|
depends_on "postgresql" if build.without? "mysql"
|
|
depends_on "fping"
|
|
depends_on "libevent"
|
|
depends_on "libssh2"
|
|
end
|
|
|
|
def brewed_or_shipped(db_config)
|
|
brewed_db_config = "#{HOMEBREW_PREFIX}/bin/#{db_config}"
|
|
(File.exist?(brewed_db_config) && brewed_db_config) || which(db_config)
|
|
end
|
|
|
|
def install
|
|
sdk = MacOS::CLT.installed? ? "" : MacOS.sdk_path
|
|
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
--sysconfdir=#{etc}/zabbix
|
|
--enable-agent
|
|
--with-iconv=#{sdk}/usr
|
|
--with-libpcre=#{Formula["pcre"].opt_prefix}
|
|
--with-openssl=#{Formula["openssl"].opt_prefix}
|
|
]
|
|
|
|
if build.with? "server-proxy"
|
|
args += %w[
|
|
--enable-server
|
|
--enable-proxy
|
|
--enable-ipv6
|
|
--with-net-snmp
|
|
--with-libcurl
|
|
--with-ssh2
|
|
]
|
|
|
|
if build.with? "mysql"
|
|
args << "--with-mysql=#{brewed_or_shipped("mysql_config")}"
|
|
elsif build.with? "sqlite"
|
|
args << "--with-sqlite3"
|
|
else
|
|
args << "--with-postgresql=#{brewed_or_shipped("pg_config")}"
|
|
end
|
|
end
|
|
|
|
if MacOS.version == :el_capitan && MacOS::Xcode.installed? && MacOS::Xcode.version >= "8.0"
|
|
inreplace "configure", "clock_gettime(CLOCK_REALTIME, &tp);",
|
|
"undefinedgibberish(CLOCK_REALTIME, &tp);"
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
|
|
if build.with? "server-proxy"
|
|
db = build.with?("mysql") ? "mysql" : "postgresql"
|
|
pkgshare.install "frontends/php", "database/#{db}"
|
|
end
|
|
end
|
|
|
|
test do
|
|
system sbin/"zabbix_agentd", "--print"
|
|
end
|
|
end
|