2010-06-14 03:27:50 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Hping < Formula
|
2010-06-14 03:27:50 +00:00
|
|
|
homepage 'http://www.hping.org/'
|
2012-02-10 04:12:16 +00:00
|
|
|
url 'http://www.hping.org/hping3-20051105.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'e13d27e14e7f90c2148a9b00a480781732fd351e'
|
2010-07-27 15:55:13 +00:00
|
|
|
version '3.20051105'
|
|
|
|
|
2014-03-17 00:35:08 +00:00
|
|
|
patch :DATA
|
|
|
|
|
|
|
|
patch :p0 do
|
|
|
|
url "https://trac.macports.org/export/70033/trunk/dports/net/hping3/files/patch-libpcap_stuff.c.diff"
|
|
|
|
sha1 "f45eef54b327bafd65d7911ffca86ce1f4ea0c7f"
|
|
|
|
end
|
|
|
|
|
|
|
|
patch :p0 do
|
|
|
|
url "https://trac.macports.org/export/70033/trunk/dports/net/hping3/files/patch-ars.c.diff"
|
|
|
|
sha1 "fb28fc544f6c57c5a16ff584703646a89d335f6c"
|
|
|
|
end
|
|
|
|
|
|
|
|
patch :p0 do
|
|
|
|
url "https://trac.macports.org/export/70033/trunk/dports/net/hping3/files/patch-sendip.c.diff"
|
|
|
|
sha1 "6aad537b1afd33cd90d5926c718b3e8970b2eca5"
|
|
|
|
end
|
|
|
|
|
|
|
|
patch :p0 do
|
|
|
|
url "https://trac.macports.org/export/70033/trunk/dports/net/hping3/files/patch-Makefile.in.diff"
|
|
|
|
sha1 "0d2b52623020c04b07cae3f512e917ad8d54ae03"
|
|
|
|
end
|
|
|
|
|
|
|
|
patch :p0 do
|
|
|
|
url "https://trac.macports.org/export/70033/trunk/dports/net/hping3/files/patch-bytesex.h.diff"
|
|
|
|
sha1 "01e69fd8684a61568ac384bd62017bec6fed6ee5"
|
2010-07-27 15:55:13 +00:00
|
|
|
end
|
2010-06-14 03:27:50 +00:00
|
|
|
|
|
|
|
def install
|
2010-07-27 15:55:13 +00:00
|
|
|
# Compile fails with tcl support; TCL on OS X is 32-bit only
|
|
|
|
system "./configure", "--no-tcl"
|
|
|
|
|
|
|
|
# Target folders need to exist before installing
|
|
|
|
sbin.mkpath
|
2010-04-07 05:58:35 +00:00
|
|
|
man8.mkpath
|
2012-02-10 04:12:16 +00:00
|
|
|
system "make", "CC=#{ENV.cc}",
|
|
|
|
"COMPILE_TIME=#{ENV.cflags}",
|
|
|
|
"INSTALL_PATH=#{prefix}",
|
|
|
|
"INSTALL_MANPATH=#{man}",
|
|
|
|
"install"
|
2010-06-14 03:27:50 +00:00
|
|
|
end
|
|
|
|
end
|
2013-12-12 20:00:36 +00:00
|
|
|
|
|
|
|
__END__
|
|
|
|
diff --git a/gethostname.c b/gethostname.c
|
|
|
|
index 3d0ea58..a8a9699 100644
|
|
|
|
--- a/gethostname.c
|
|
|
|
+++ b/gethostname.c
|
|
|
|
@@ -18,8 +18,6 @@
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
-size_t strlcpy(char *dst, const char *src, size_t siz);
|
|
|
|
-
|
|
|
|
char *get_hostname(char* addr)
|
|
|
|
{
|
|
|
|
static char answer[1024];
|