homebrew-core/Formula/nmap.rb

62 lines
1.5 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Nmap < Formula
url 'http://nmap.org/dist/nmap-5.51.tar.bz2'
2010-07-04 05:37:48 +00:00
homepage 'http://nmap.org/5/'
md5 '0b80d2cb92ace5ebba8095a4c2850275'
head 'https://guest:@svn.nmap.org/nmap/', :using => :svn
# Leopard's version of OpenSSL isn't new enough
2011-04-08 18:16:37 +00:00
depends_on "openssl" if MacOS.leopard?
fails_with :llvm do
build 2334
end
2011-03-21 21:24:22 +00:00
2012-02-21 03:11:44 +00:00
# The configure script has a C file to test for some functionality that uses
# void main(void). This does not compile with clang but does compile with
# GCC/gcc-llvm. This small patch fixes the issues so that the project will
# compile without issues with clang as well. See:
# https://github.com/mxcl/homebrew/issues/10300
def patches
DATA
end
def install
2009-12-28 19:12:45 +00:00
ENV.deparallelize
2010-07-04 05:37:48 +00:00
args = ["--prefix=#{prefix}", "--without-zenmap"]
2011-04-08 18:16:37 +00:00
if MacOS.leopard?
openssl = Formula.factory('openssl')
args << "--with-openssl=#{openssl.prefix}"
end
system "./configure", *args
system "make" # separate steps required otherwise the build fails
system "make install"
end
end
__END__
--- nmap-5.51/nbase/configure 2012-02-18 02:40:16.000000000 -0700
+++ nmap-5.51/nbase/configure.old 2012-02-18 02:40:01.000000000 -0700
@@ -4509,7 +4509,7 @@
#include <sys/socket.h>
#endif
-void main(void) {
+int main(void) {
struct addrinfo hints, *ai;
int error;
@@ -4641,7 +4641,7 @@
#include <netinet/in.h>
#endif
-void main(void) {
+int main(void) {
struct sockaddr_in sa;
char hbuf[256];
int error;