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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
require 'formula'
class AptDater < Formula
url 'http://downloads.sourceforge.net/project/apt-dater/apt-dater/0.8.6/apt-dater-0.8.6.tar.gz'
homepage 'http://www.ibh.de/apt-dater/'
md5 '1f1b92403b9afb74032254ed47e7bce3'
depends_on 'gettext'
depends_on 'glib'
depends_on 'popt'
# bug report:
# http://sourceforge.net/tracker/?func=detail&aid=3470631&group_id=233727&atid=1091021
def patches
{ :p0 => DATA }
end
def install
inreplace 'src/Makefile.in' do |s|
s.remove_make_var! 'AM_LDFLAGS'
end
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
def test
system "apt-dater -v"
end
end
__END__
--- src/apt-dater.c
+++ src/apt-dater.c
@@ -180,10 +180,10 @@ int main(int argc, char **argv, char **envp)
if(!report) {
#endif
/* Test if we are the owner of the TTY or die. */
- if(g_access("/proc/self/fd/0", R_OK|W_OK)) {
- g_error(_("Cannot open your terminal /proc/self/fd/0 - please check."));
- exit(EXIT_FAILURE);
- }
+// if( g_access("/proc/self/fd/0", R_OK|W_OK)) {
+// g_error(_("Cannot open your terminal /proc/self/fd/0 - please check."));
+// exit(EXIT_FAILURE);
+// }
getOldestMtime(hosts);
--- src/stats.c
+++ src/stats.c
@@ -96,6 +96,9 @@ gboolean setStatsFileFromIOC(GIOChannel *ioc, GIOCondition condition,
if(iostatus == G_IO_STATUS_ERROR || iostatus == G_IO_STATUS_AGAIN)
break;
+ if(*buf == 0)
+ condition = G_IO_HUP;
+
if(fwrite(buf, sizeof(gchar), bytes, ((HostNode *) n)->fpstat) != bytes)
break;
|