2011-12-03 03:25:25 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Bind < Formula
|
|
|
|
homepage 'http://www.isc.org/software/bind/'
|
2012-06-12 23:06:43 +00:00
|
|
|
url 'ftp://ftp.isc.org/isc/bind9/9.9.1-P2/bind-9.9.1-P2.tar.gz'
|
|
|
|
version '9.9.1-p2'
|
|
|
|
sha1 '449b12c32682b5bef64c7b53cd0fc0c6b731c8a7'
|
2011-12-03 03:25:25 +00:00
|
|
|
|
2012-09-05 04:04:01 +00:00
|
|
|
depends_on "openssl" if MacOS.version == :leopard
|
2011-12-03 03:25:25 +00:00
|
|
|
|
|
|
|
def install
|
2012-06-12 23:06:43 +00:00
|
|
|
ENV.libxml2
|
|
|
|
# libxml2 appends one inc dir to CPPFLAGS but bind ignores CPPFLAGS
|
|
|
|
ENV.append 'CFLAGS', ENV['CPPFLAGS']
|
|
|
|
|
|
|
|
ENV['STD_CDEFINES'] = '-DDIG_SIGCHASE=1'
|
|
|
|
|
|
|
|
args = [
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--enable-threads",
|
|
|
|
"--enable-ipv6",
|
|
|
|
]
|
|
|
|
|
|
|
|
# For Xcode-only systems we help a bit to find openssl.
|
|
|
|
# If CLT.installed?, it evaluates to "/usr", which works.
|
2012-09-05 04:04:01 +00:00
|
|
|
args << "--with-openssl=#{MacOS.sdk_path.to_s}/usr" unless MacOS.version == :leopard
|
2012-06-12 23:06:43 +00:00
|
|
|
|
|
|
|
system "./configure", *args
|
|
|
|
|
|
|
|
# From the bind9 README: "Do not use a parallel 'make'."
|
|
|
|
ENV.deparallelize
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
2011-12-03 03:25:25 +00:00
|
|
|
end
|
|
|
|
end
|