2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-02 06:43:17 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Dnsmasq < Formula
|
2010-04-07 05:58:35 +00:00
|
|
|
homepage 'http://www.thekelleys.org.uk/dnsmasq/doc.html'
|
2013-12-15 13:08:08 +00:00
|
|
|
url 'http://www.thekelleys.org.uk/dnsmasq/dnsmasq-2.68.tar.gz'
|
|
|
|
sha1 'c78f5992539ff29924ca6aa1ba06ecb81710e743'
|
2009-09-02 06:43:17 +00:00
|
|
|
|
2014-02-23 12:04:53 +00:00
|
|
|
bottle do
|
|
|
|
sha1 "604566d789db22d8c25b7bc28d255d5957c8d28a" => :mavericks
|
|
|
|
sha1 "cb1e603aa85cbbd86d871d4530c6a741e4b1968f" => :mountain_lion
|
|
|
|
sha1 "b3746e517c4ba585e595b9ff2ae36d2055a65037" => :lion
|
|
|
|
end
|
|
|
|
|
2012-08-13 21:05:07 +00:00
|
|
|
option 'with-idn', 'Compile with IDN support'
|
2011-12-28 09:47:05 +00:00
|
|
|
|
2014-03-06 20:40:26 +00:00
|
|
|
depends_on "libidn" if build.with? "idn"
|
2013-06-21 00:01:18 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
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-03-06 20:40:26 +00:00
|
|
|
if build.with? "idn"
|
2011-12-28 09:47:05 +00:00
|
|
|
inreplace "src/config.h", "/* #define HAVE_IDN */", "#define HAVE_IDN"
|
|
|
|
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>
|
|
|
|
</array>
|
|
|
|
<key>KeepAlive</key>
|
|
|
|
<dict>
|
|
|
|
<key>NetworkState</key>
|
|
|
|
<true/>
|
|
|
|
</dict>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOS
|
2009-09-02 06:43:17 +00:00
|
|
|
end
|
|
|
|
end
|