aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/echoping.rb
blob: 4948ace4e8322b7d0e0fd89fb10885122d6761c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
require 'formula'

class Echoping < Formula
  url 'http://downloads.sourceforge.net/project/echoping/echoping/6.0.2/echoping-6.0.2.tar.gz'
  homepage 'http://echoping.sourceforge.net/'
  md5 '991478532b56ab3b6f46ea9fa332626f'

  depends_on 'popt'
  depends_on 'libidn'

  # Fixes a DNS issue with header files, taken from Macports
  # https://trac.macports.org/browser/trunk/dports/net/echoping/files/patch-plugins-dns-dns.c.diff
  def patches
      DATA
  end

  def install
    system "./configure", "--config-cache", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--mandir=#{man}"
    system "make install"
  end
end


__END__
diff --git a/plugins/dns/dns.c b/plugins/dns/dns.c
index 9730913..966f51a 100644
--- a/plugins/dns/dns.c
+++ b/plugins/dns/dns.c
@@ -9,6 +9,7 @@
 #endif
 #include <netinet/in.h>
 #include <arpa/nameser.h>
+#include <arpa/nameser_compat.h>
 #include <resolv.h>
 
 struct addrinfo name_server;