summaryrefslogtreecommitdiff
path: root/sysutils/rox
diff options
context:
space:
mode:
authorsbd <sbd@pkgsrc.org>2012-01-08 03:39:25 +0000
committersbd <sbd@pkgsrc.org>2012-01-08 03:39:25 +0000
commit1f04fca933f4093ad9ca384aec9e688663d7ce7e (patch)
tree77efbea3932248c518e230fed3c6740895b912e7 /sysutils/rox
parent01ce5006348cbd9e7615e623f0b04bf49a0c2d84 (diff)
downloadpkgsrc-1f04fca933f4093ad9ca384aec9e688663d7ce7e.tar.gz
<stdint.h> needs to be include for intmax_t.
Diffstat (limited to 'sysutils/rox')
-rw-r--r--sysutils/rox/distinfo4
-rw-r--r--sysutils/rox/patches/patch-ab16
2 files changed, 14 insertions, 6 deletions
diff --git a/sysutils/rox/distinfo b/sysutils/rox/distinfo
index 9a81e15c7f6..39d73b5e084 100644
--- a/sysutils/rox/distinfo
+++ b/sysutils/rox/distinfo
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.11 2009/12/10 16:28:44 joerg Exp $
+$NetBSD: distinfo,v 1.12 2012/01/08 03:39:25 sbd Exp $
SHA1 (rox/rox-filer-2.10.tar.bz2) = 691297d18be69a883db0a38130f5df99f9e1bc29
RMD160 (rox/rox-filer-2.10.tar.bz2) = 48b64ccaceb96b59fbd2467aa65d8e128ebd960d
Size (rox/rox-filer-2.10.tar.bz2) = 1903129 bytes
SHA1 (patch-aa) = 20cf42090c9cd3149af6e7be59f826624062d759
-SHA1 (patch-ab) = e7e27a71fdea3257f85fdfc3f8d1352d0f1f0968
+SHA1 (patch-ab) = bec4e64a5f54109fab55f89b8da9a55d0465d0ab
SHA1 (patch-ac) = fc78b2208cb052bedaab4ae3c1e59677bc299f6e
SHA1 (patch-ad) = 3a8fef42c3749bb9aa2fc17f292a940aacd596b3
diff --git a/sysutils/rox/patches/patch-ab b/sysutils/rox/patches/patch-ab
index c0dd35dfc36..48af9ef6740 100644
--- a/sysutils/rox/patches/patch-ab
+++ b/sysutils/rox/patches/patch-ab
@@ -1,8 +1,16 @@
-$NetBSD: patch-ab,v 1.4 2009/11/05 19:50:54 reinoud Exp $
+$NetBSD: patch-ab,v 1.5 2012/01/08 03:39:25 sbd Exp $
---- ROX-Filer/src/infobox.c.orig 2009-07-18 16:23:18.000000000 +0200
+--- ROX-Filer/src/infobox.c.orig 2009-07-18 14:23:18.000000000 +0000
+++ ROX-Filer/src/infobox.c
-@@ -435,7 +435,7 @@ static void insert_size(DU *du, const ch
+@@ -26,6 +26,7 @@
+ #include <string.h>
+ #include <sys/param.h>
+ #include <signal.h>
++#include <stdint.h>
+ #include <libxml/parser.h>
+
+ #include <gtk/gtk.h>
+@@ -435,7 +436,7 @@ static void insert_size(DU *du, const ch
cell = (size >= PRETTY_SIZE_LIMIT)
? g_strdup_printf("%s (%" SIZE_FMT " %s)",
format_size(size),
@@ -11,7 +19,7 @@ $NetBSD: patch-ab,v 1.4 2009/11/05 19:50:54 reinoud Exp $
: g_strdup(format_size(size));
set_cell(du->store, du->path, cell);
-@@ -576,7 +576,7 @@ static GtkWidget *make_details(const guc
+@@ -576,7 +577,7 @@ static GtkWidget *make_details(const guc
item->size >= PRETTY_SIZE_LIMIT
? g_strdup_printf("%s (%" SIZE_FMT " %s)",
format_size(item->size),