class Bind < Formula desc "Implementation of the DNS protocols" homepage "https://www.isc.org/downloads/bind/" url "https://ftp.isc.org/isc/bind9/9.12.4/bind-9.12.4.tar.gz" sha256 "81bf24b2b86f7288ccf727aff59f1d752cc3e9de30a7480d24d67736256a0d53" head "https://gitlab.isc.org/isc-projects/bind9.git" bottle do sha256 "d82db03a139392f57129bd79b1ea2539976d78474e12783672a938beb52ade6a" => :mojave sha256 "a5fdca7936ef8bd8b4bc816529b9410d366c077969e4719c44044094ba5d59e0" => :high_sierra sha256 "a772621d02fa39eed580232b8b769414e946168e40d096cf03853fb3f0cb79d0" => :sierra end depends_on "json-c" depends_on "openssl" depends_on "python" resource "ply" do url "https://files.pythonhosted.org/packages/e5/69/882ee5c9d017149285cab114ebeab373308ef0f874fcdac9beb90e0ac4da/ply-3.11.tar.gz" sha256 "00c7c1aaa88358b9c765b6d3000c6eec0ba42abca5351b095321aef446081da3" end def install xy = Language::Python.major_minor_version "python3" ENV.prepend_create_path "PYTHONPATH", libexec/"vendor/lib/python#{xy}/site-packages" resources.each do |r| r.stage do system "python3", *Language::Python.setup_install_args(libexec/"vendor") end end # Fix "configure: error: xml2-config returns badness" if MacOS.version == :sierra || MacOS.version == :el_capitan ENV["SDKROOT"] = MacOS.sdk_path end # enable DNSSEC signature chasing in dig ENV["STD_CDEFINES"] = "-DDIG_SIGCHASE=1" system "./configure", "--prefix=#{prefix}", "--enable-threads", "--enable-ipv6", "--with-openssl=#{Formula["openssl"].opt_prefix}", "--with-libjson=#{Formula["json-c"].opt_prefix}" # From the bind9 README: "Do not use a parallel "make" ENV.deparallelize system "make" system "make", "install" (buildpath/"named.conf").write named_conf system "#{sbin}/rndc-confgen", "-a", "-c", "#{buildpath}/rndc.key" etc.install "named.conf", "rndc.key" end def post_install (var/"log/named").mkpath # Create initial configuration/zone/ca files. # (Mirrors Apple system install from 10.8) unless (var/"named").exist? (var/"named").mkpath (var/"named/localhost.zone").write localhost_zone (var/"named/named.local").write named_local end end def named_conf; <<~EOS // // Include keys file // include "#{etc}/rndc.key"; // Declares control channels to be used by the rndc utility. // // It is recommended that 127.0.0.1 be the only address used. // This also allows non-privileged users on the local host to manage // your name server. // // Default controls // controls { inet 127.0.0.1 port 54 allow { any; } keys { "rndc-key"; }; }; options { directory "#{var}/named"; /* * If there is a firewall between you and nameservers you want * to talk to, you might need to uncomment the query-source * directive below. Previous versions of BIND always asked * questions using port 53, but BIND 8.1 uses an unprivileged * port by default. */ // query-source address * port 53; }; // // a caching only nameserver config // zone "localhost" IN { type master; file "localhost.zone"; allow-update { none; }; }; zone "0.0.127.in-addr.arpa" IN { type master; file "named.local"; allow-update { none; }; }; logging { category default { _default_log; }; channel _default_log { file "#{var}/log/named/named.log"; severity info; print-time yes; }; }; EOS end def localhost_zone; <<~EOS $TTL 86400 $ORIGIN localhost. @ 1D IN SOA @ root ( 42 ; serial (d. adams) 3H ; refresh 15M ; retry 1W ; expiry 1D ) ; minimum 1D IN NS @ 1D IN A 127.0.0.1 EOS end def named_local; <<~EOS $TTL 86400 @ IN SOA localhost. root.localhost. ( 1997022700 ; Serial 28800 ; Refresh 14400 ; Retry 3600000 ; Expire 86400 ) ; Minimum IN NS localhost. 1 IN PTR localhost. EOS end plist_options :startup => true def plist; <<~EOS EnableTransactions Label #{plist_name} RunAtLoad ProgramArguments #{opt_sbin}/named -f -c #{etc}/named.conf ServiceIPC EOS end test do system bin/"dig", "-v" system bin/"dig", "brew.sh" end end