summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authortez <tez@pkgsrc.org>2012-01-25 23:37:16 +0000
committertez <tez@pkgsrc.org>2012-01-25 23:37:16 +0000
commit9d7d6e67b14f03fee95c20aae888d6270b706a4d (patch)
tree728729b11bdc53e7492f8f2a7367b372ed50fdde /sysutils
parent3d869b2600951b4baecb61c5bc36aacbedb8418a (diff)
downloadpkgsrc-9d7d6e67b14f03fee95c20aae888d6270b706a4d.tar.gz
Per PR#45871 Solaris derived OSs haven't DEFFILEMODE defined
so define it if it is not defined. No bump, since this only changes a case where the package did not build. Also, for the record, this version does not include the code vulnerable to http://secunia.com/advisories/44104/ as that feature is not yet here.
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/xfce4-thunar/distinfo3
-rw-r--r--sysutils/xfce4-thunar/patches/patch-thunar-vfs_thunar-vfs-io-jobs.c17
2 files changed, 19 insertions, 1 deletions
diff --git a/sysutils/xfce4-thunar/distinfo b/sysutils/xfce4-thunar/distinfo
index 9e9910e6788..0f09b3aa233 100644
--- a/sysutils/xfce4-thunar/distinfo
+++ b/sysutils/xfce4-thunar/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.6 2009/09/16 01:15:34 reed Exp $
+$NetBSD: distinfo,v 1.7 2012/01/25 23:37:16 tez Exp $
SHA1 (Thunar-1.0.1.tar.bz2) = 2fcd3a7b0e27b01f059dffc8ffdac94e2b2aa064
RMD160 (Thunar-1.0.1.tar.bz2) = 203690b9eb05ca8e5248bb026f98b8e3e6881f2c
@@ -6,3 +6,4 @@ Size (Thunar-1.0.1.tar.bz2) = 8802672 bytes
SHA1 (patch-aa) = c9d9dfb4c177aab2e8a43e46998652cc72daefa5
SHA1 (patch-ab) = e5c3f1e853bf59f69047c7160a3e29df54298879
SHA1 (patch-ac) = 745f240ff44b0b21eb727b0a9887c9d8f1ee8a47
+SHA1 (patch-thunar-vfs_thunar-vfs-io-jobs.c) = 8529460dea3353b7b8bb034c65c95e4561f61aab
diff --git a/sysutils/xfce4-thunar/patches/patch-thunar-vfs_thunar-vfs-io-jobs.c b/sysutils/xfce4-thunar/patches/patch-thunar-vfs_thunar-vfs-io-jobs.c
new file mode 100644
index 00000000000..aca87c26e73
--- /dev/null
+++ b/sysutils/xfce4-thunar/patches/patch-thunar-vfs_thunar-vfs-io-jobs.c
@@ -0,0 +1,17 @@
+$NetBSD: patch-thunar-vfs_thunar-vfs-io-jobs.c,v 1.1 2012/01/25 23:37:17 tez Exp $
+
+Per PR#45871 Solaris derived OSs haven't DEFFILEMODE defined
+so define it if it is not defined.
+
+--- thunar-vfs/thunar-vfs-io-jobs.c.orig 2012-01-25 23:28:41.920049200 +0000
++++ thunar-vfs/thunar-vfs-io-jobs.c
+@@ -60,6 +60,9 @@
+ #endif
+
+
++#ifndef DEFFILEMODE
++#define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
++#endif
+
+ static GList *tvij_collect_nofollow (ThunarVfsJob *job,
+ GList *base_path_list,