83177bc3aa
Closes Homebrew/homebrew#20096. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
35 lines
947 B
Ruby
35 lines
947 B
Ruby
require 'formula'
|
|
|
|
class Bind < Formula
|
|
homepage 'http://www.isc.org/software/bind/'
|
|
url 'ftp://ftp.isc.org/isc/bind9/9.9.2-P2/bind-9.9.2-P2.tar.gz'
|
|
version '9.9.2-P2'
|
|
sha1 '3aadeaf64164a31a1cf22737ff2eea706792b68d'
|
|
|
|
depends_on "openssl" if MacOS.version == :leopard
|
|
|
|
def install
|
|
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.
|
|
args << "--with-openssl=#{MacOS.sdk_path.to_s}/usr" unless MacOS.version == :leopard
|
|
|
|
system "./configure", *args
|
|
|
|
# From the bind9 README: "Do not use a parallel 'make'."
|
|
ENV.deparallelize
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|