aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-03-13 07:10:15 -0700
committerAdam Vandenberg2012-03-13 07:10:15 -0700
commit5f1d967e1a7e2bf5db19f2d9d1deca17020ed9ff (patch)
tree4c1b644eb44a54de1b1b5ae3d300924e67aee6ea /Library/Formula
parentc7487d9e5644f0190e3860d43735d78b4b4a3627 (diff)
downloadhomebrew-5f1d967e1a7e2bf5db19f2d9d1deca17020ed9ff.tar.bz2
Move jwhois to homebrew-alt
Upstream project is mostly unmaintained: https://github.com/mxcl/homebrew/pull/8902
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/jwhois.rb35
1 files changed, 0 insertions, 35 deletions
diff --git a/Library/Formula/jwhois.rb b/Library/Formula/jwhois.rb
deleted file mode 100644
index d0baacfbf..000000000
--- a/Library/Formula/jwhois.rb
+++ /dev/null
@@ -1,35 +0,0 @@
-require 'formula'
-
-class Jwhois < Formula
- url 'http://ftpmirror.gnu.org/jwhois/jwhois-4.0.tar.gz'
- mirror 'http://ftp.gnu.org/gnu/jwhois/jwhois-4.0.tar.gz'
- homepage 'http://directory.fsf.org/project/jwhois/'
- md5 '977d0ba90ee058a7998c94d933fc9546'
-
- # No whois entry in /etc/services. Use nicname instead.
- def patches; DATA; end
-
- def install
- # link fails on libiconv if not added here
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}",
- "LIBS=-liconv"
- system "make install"
- end
-end
-
-
-__END__
-diff --git a/src/dns.c b/src/dns.c
-index a818237..b5fe9c8 100644
---- a/src/dns.c
-+++ b/src/dns.c
-@@ -113,7 +113,7 @@ int
- lookup_host_addrinfo(struct addrinfo **res, const char *host, int port)
- {
- struct addrinfo hints;
-- char ascport[10] = "whois";
-+ char ascport[10] = "nicname";
- int error;
-
- memset(&hints, 0, sizeof(hints));