homebrew-core/Formula/bind.rb

36 lines
943 B
Ruby
Raw Normal View History

require 'formula'
class Bind < Formula
homepage 'http://www.isc.org/software/bind/'
url 'http://ftp.isc.org/isc/bind9/9.9.3-P1/bind-9.9.3-P1.tar.gz'
sha1 '9e1a9e5e45685befce6b93d4fcfd63e50eaeb2cf'
version '9.9.3-P1'
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.
2013-06-09 20:20:18 +00:00
args << "--with-openssl=#{MacOS.sdk_path}/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