homebrew-core/Formula/bind.rb
samueljohn 8f25ceafec bind: 9.9.1-p2
- Fix Xcode-only specific path for open-ssl.
- Add ENV.libxml2

Closes Homebrew/homebrew#14201.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-26 17:28:40 -07:00

35 lines
925 B
Ruby

require 'formula'
class Bind < Formula
homepage 'http://www.isc.org/software/bind/'
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'
depends_on "openssl" if MacOS.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.leopard?
system "./configure", *args
# From the bind9 README: "Do not use a parallel 'make'."
ENV.deparallelize
system "make"
system "make install"
end
end