aget: use MacPorts patch

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
master
Jack Nagel 2012-02-24 19:40:54 -06:00
parent f3de375947
commit 5b9ace578e
1 changed files with 4 additions and 16 deletions

View File

@ -6,26 +6,14 @@ class Aget < Formula
md5 'ddee95ad1d394a4751ebde24fcb36fa1'
def patches
{ :p0 => DATA }
{ :p0 => "https://trac.macports.org/export/90173/trunk/dports/net/aget/files/patch-Head.c" }
end
def install
system "make"
system "make", "CC=#{ENV.cc}",
"CFLAGS=#{ENV.cflags}",
"LDFLAGS=#{ENV.ldflags}"
bin.install "aget"
man1.install "aget.1"
end
end
__END__
--- Head.c 2009-05-12 14:22:42.000000000 +0900
+++ Head.c.new 2010-10-21 00:12:25.000000000 +0900
@@ -59,7 +59,7 @@
hstrerror(h_errno));
exit(1);
}
- strncpy(req->ip, inet_ntoa(*(struct in_addr *)he->h_addr), MAXIPSIZ);
+ strncpy(req->ip, inet_ntoa(*(struct in_addr *)he->h_addr_list[0]), MAXIPSIZ);
time(&t_start);