blob: 5086ca39d8976c81687600f8ba590476272144e8 (
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
|
require 'formula'
class GnuTime < Formula
homepage 'http://www.gnu.org/software/time/'
url 'http://ftpmirror.gnu.org/time/time-1.7.tar.gz'
mirror 'http://ftp.gnu.org/gnu/time/time-1.7.tar.gz'
sha1 'dde0c28c7426960736933f3e763320680356cc6a'
# Fixes issue with main returning void rather than int
# http://trac.macports.org/ticket/32860
# http://trac.macports.org/browser/trunk/dports/sysutils/gtime/files/patch-time.c.diff?rev=88924
patch :DATA
def install
system "./configure", "--program-prefix=g",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--info=#{info}"
system "make install"
end
end
__END__
diff --git a/time.c b/time.c
index 9d5cf2c..97611f5 100644
--- a/time.c
+++ b/time.c
@@ -628,7 +628,7 @@ run_command (cmd, resp)
signal (SIGQUIT, quit_signal);
}
-void
+int
main (argc, argv)
int argc;
char **argv;
|