aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDan Boykis2011-12-02 22:25:25 -0500
committerAdam Vandenberg2012-04-08 15:45:46 -0700
commit7747665fddde8ef619a0ad76cf4599f3f24b45d9 (patch)
tree699fce17a824021112bcc48a828247a67a99729c /Library/Formula
parent04210790ea001a937f3ef19d907d019f1fa6d5b9 (diff)
downloadhomebrew-7747665fddde8ef619a0ad76cf4599f3f24b45d9.tar.bz2
Bind 9.8.1-P1
This brew includes Bind along with a suite of tools bundled with it. These tools are the de facto standard for working with DNS. Bind is compiled with ipv6 support and dig is compiled with sigchase option turned on. Closes #8948. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/bind.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/bind.rb b/Library/Formula/bind.rb
new file mode 100644
index 000000000..902ebbd19
--- /dev/null
+++ b/Library/Formula/bind.rb
@@ -0,0 +1,20 @@
+require 'formula'
+
+class Bind < Formula
+ homepage 'http://www.isc.org/software/bind/'
+ url 'ftp://ftp.isc.org/isc/bind9/9.8.1-P1/bind-9.8.1-P1.tar.gz'
+ version '9.8.1-p1'
+ sha256 '867fdd52d3436c6ab6d357108d7f9eaaf03f1422652e6e61c742816ff7f87929'
+
+ depends_on "openssl" if MacOS.leopard?
+
+ def install
+ ENV['STD_CDEFINES']='-DDIG_SIGCHASE=1'
+ system "./configure", "--prefix=#{prefix}",
+ "--enable-threads",
+ "--enable-ipv6",
+ "--with-openssl"
+ system "make"
+ system "make install"
+ end
+end