class Dnsmasq < Formula desc "Lightweight DNS forwarder and DHCP server" homepage "http://www.thekelleys.org.uk/dnsmasq/doc.html" url "http://www.thekelleys.org.uk/dnsmasq/dnsmasq-2.73.tar.gz" sha256 "9f350f74ae2c7990b1c7c6c8591d274c37b674aa987f54dfee7ca856fae0d02d" bottle do cellar :any revision 1 sha256 "7d0589f5a6b4c6addcf62a9f766291753514ade66550b2c582d98662e925fd68" => :yosemite sha256 "63a5a949e45b0226352c60d8436a1088aadf3e94bd699eb41fdd8bac5ae6199e" => :mavericks sha256 "8f79b99434415fde4f10583ecc29a32fc57f26f65b7ebe7725c8b23277ad2acb" => :mountain_lion end option "with-libidn", "Compile with IDN support" option "with-dnssec", "Compile with DNSSEC support" deprecated_option "with-idn" => "with-libidn" depends_on "pkg-config" => :build depends_on "libidn" => :optional depends_on "nettle" if build.with? "dnssec" def install ENV.deparallelize # Fix etc location inreplace "src/config.h", "/etc/dnsmasq.conf", "#{etc}/dnsmasq.conf" # Optional IDN support if build.with? "libidn" inreplace "src/config.h", "/* #define HAVE_IDN */", "#define HAVE_IDN" end # Optional DNSSEC support if build.with? "dnssec" inreplace "src/config.h", "/* #define HAVE_DNSSEC */", "#define HAVE_DNSSEC" end # Fix compilation on Lion ENV.append_to_cflags "-D__APPLE_USE_RFC_3542" if MacOS.version >= :lion inreplace "Makefile" do |s| s.change_make_var! "CFLAGS", ENV.cflags end system "make", "install", "PREFIX=#{prefix}" prefix.install "dnsmasq.conf.example" end def caveats; <<-EOS.undent To configure dnsmasq, copy the example configuration to #{etc}/dnsmasq.conf and edit to taste. cp #{opt_prefix}/dnsmasq.conf.example #{etc}/dnsmasq.conf EOS end plist_options :startup => true def plist; <<-EOS.undent Label #{plist_name} ProgramArguments #{opt_sbin}/dnsmasq --keep-in-foreground -C #{etc}/dnsmasq.conf RunAtLoad KeepAlive EOS end test do system "#{sbin}/dnsmasq", "--test" end end