2011-03-10 05:11:03 +00:00
|
|
|
class Dnsmasq < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Lightweight DNS forwarder and DHCP server"
|
2014-09-27 16:29:48 +00:00
|
|
|
homepage "http://www.thekelleys.org.uk/dnsmasq/doc.html"
|
2015-08-01 08:27:03 +00:00
|
|
|
url "http://www.thekelleys.org.uk/dnsmasq/dnsmasq-2.75.tar.gz"
|
|
|
|
sha256 "f8252c0a0ba162c2cd45f81140c7c17cc40a5fca2b869d1a420835b74acad294"
|
2014-02-23 12:04:53 +00:00
|
|
|
|
2014-05-17 03:30:05 +00:00
|
|
|
bottle do
|
2015-09-14 07:07:59 +00:00
|
|
|
cellar :any_skip_relocation
|
|
|
|
sha256 "80f9f8382c98cc0922883d6a23a6b6de05232bc75baa4b2fe088c57654bf1c4e" => :el_capitan
|
2015-08-01 12:35:20 +00:00
|
|
|
sha256 "f245adcc7718bd0c8167fa0518f286f261755aa7c54b029c1d6e8e26625b7193" => :yosemite
|
|
|
|
sha256 "c3aad8472b1d51d81c14ecfecec69cfa94a43adb07a445c11880ad0c0c9ffc1e" => :mavericks
|
|
|
|
sha256 "08084970fe50a3d7a325ca40c3b7ead00bcf3a67be5415e97c1557857c211323" => :mountain_lion
|
2014-05-17 03:30:05 +00:00
|
|
|
end
|
|
|
|
|
2014-11-14 20:35:07 +00:00
|
|
|
option "with-libidn", "Compile with IDN support"
|
2014-09-27 16:29:48 +00:00
|
|
|
option "with-dnssec", "Compile with DNSSEC support"
|
2011-12-28 09:47:05 +00:00
|
|
|
|
2014-11-14 20:35:07 +00:00
|
|
|
deprecated_option "with-idn" => "with-libidn"
|
|
|
|
|
2014-09-27 16:29:48 +00:00
|
|
|
depends_on "pkg-config" => :build
|
2014-11-14 20:35:07 +00:00
|
|
|
depends_on "libidn" => :optional
|
|
|
|
depends_on "nettle" if build.with? "dnssec"
|
2011-12-28 09:47:05 +00:00
|
|
|
|
2009-09-02 06:43:17 +00:00
|
|
|
def install
|
|
|
|
ENV.deparallelize
|
2010-06-23 05:55:46 +00:00
|
|
|
|
2011-06-13 13:53:58 +00:00
|
|
|
# Fix etc location
|
2010-06-23 05:55:46 +00:00
|
|
|
inreplace "src/config.h", "/etc/dnsmasq.conf", "#{etc}/dnsmasq.conf"
|
2011-06-13 13:53:58 +00:00
|
|
|
|
2011-12-28 09:47:05 +00:00
|
|
|
# Optional IDN support
|
2014-11-14 20:35:07 +00:00
|
|
|
if build.with? "libidn"
|
2011-12-28 09:47:05 +00:00
|
|
|
inreplace "src/config.h", "/* #define HAVE_IDN */", "#define HAVE_IDN"
|
|
|
|
end
|
|
|
|
|
2014-07-29 04:35:59 +00:00
|
|
|
# Optional DNSSEC support
|
|
|
|
if build.with? "dnssec"
|
|
|
|
inreplace "src/config.h", "/* #define HAVE_DNSSEC */", "#define HAVE_DNSSEC"
|
|
|
|
end
|
|
|
|
|
2011-06-13 13:53:58 +00:00
|
|
|
# Fix compilation on Lion
|
2012-09-04 23:15:31 +00:00
|
|
|
ENV.append_to_cflags "-D__APPLE_USE_RFC_3542" if MacOS.version >= :lion
|
2011-06-13 13:53:58 +00:00
|
|
|
inreplace "Makefile" do |s|
|
|
|
|
s.change_make_var! "CFLAGS", ENV.cflags
|
|
|
|
end
|
|
|
|
|
2012-05-15 18:31:21 +00:00
|
|
|
system "make", "install", "PREFIX=#{prefix}"
|
2010-06-23 05:55:46 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2012-11-25 19:42:57 +00:00
|
|
|
cp #{opt_prefix}/dnsmasq.conf.example #{etc}/dnsmasq.conf
|
2010-06-23 05:55:46 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2012-11-25 15:06:41 +00:00
|
|
|
plist_options :startup => true
|
|
|
|
|
|
|
|
def plist; <<-EOS.undent
|
2010-06-23 05:55:46 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
<plist version="1.0">
|
|
|
|
<dict>
|
|
|
|
<key>Label</key>
|
2011-12-31 05:56:52 +00:00
|
|
|
<string>#{plist_name}</string>
|
2010-06-23 05:55:46 +00:00
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
2014-03-06 05:28:31 +00:00
|
|
|
<string>#{opt_sbin}/dnsmasq</string>
|
2010-06-23 05:55:46 +00:00
|
|
|
<string>--keep-in-foreground</string>
|
2015-06-18 14:51:35 +00:00
|
|
|
<string>-C</string>
|
|
|
|
<string>#{etc}/dnsmasq.conf</string>
|
2010-06-23 05:55:46 +00:00
|
|
|
</array>
|
2014-08-05 09:09:50 +00:00
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
2010-06-23 05:55:46 +00:00
|
|
|
<key>KeepAlive</key>
|
2014-08-05 09:09:50 +00:00
|
|
|
<true/>
|
2010-06-23 05:55:46 +00:00
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOS
|
2009-09-02 06:43:17 +00:00
|
|
|
end
|
2014-12-27 16:00:21 +00:00
|
|
|
|
|
|
|
test do
|
2015-06-15 08:08:53 +00:00
|
|
|
system "#{sbin}/dnsmasq", "--test"
|
2014-12-27 16:00:21 +00:00
|
|
|
end
|
2009-09-02 06:43:17 +00:00
|
|
|
end
|