Thu Jul 2 13:15:58 2015 UTC ()
Remove unneeded patch and add other patches I forgot to commit earlier.


(youri)
diff -r1.14 -r1.15 pkgsrc/x11/xfce4-session/distinfo
diff -r0 -r1.1 pkgsrc/x11/xfce4-session/patches/patch-config.h.in
diff -r0 -r1.1 pkgsrc/x11/xfce4-session/patches/patch-configure
diff -r0 -r1.1 pkgsrc/x11/xfce4-session/patches/patch-xfsm-shutdown-helper_main.c
diff -r1.1 -r0 pkgsrc/x11/xfce4-session/patches/patch-scripts_startxfce4.in

cvs diff -r1.14 -r1.15 pkgsrc/x11/xfce4-session/distinfo (expand / switch to unified diff)

--- pkgsrc/x11/xfce4-session/distinfo 2015/06/29 16:50:01 1.14
+++ pkgsrc/x11/xfce4-session/distinfo 2015/07/02 13:15:58 1.15
@@ -1,12 +1,11 @@ @@ -1,12 +1,11 @@
1$NetBSD: distinfo,v 1.14 2015/06/29 16:50:01 youri Exp $ 1$NetBSD: distinfo,v 1.15 2015/07/02 13:15:58 youri Exp $
2 2
3SHA1 (xfce4-session-4.12.1.tar.bz2) = ccdeac8bb6b4bb2382a963efdf2e05c09c61fee4 3SHA1 (xfce4-session-4.12.1.tar.bz2) = ccdeac8bb6b4bb2382a963efdf2e05c09c61fee4
4RMD160 (xfce4-session-4.12.1.tar.bz2) = 14db09177003f4139345b4d670015d90ebf28ef6 4RMD160 (xfce4-session-4.12.1.tar.bz2) = 14db09177003f4139345b4d670015d90ebf28ef6
5Size (xfce4-session-4.12.1.tar.bz2) = 1289284 bytes 5Size (xfce4-session-4.12.1.tar.bz2) = 1289284 bytes
6SHA1 (patch-ac) = 14398273b8169d26f89262310c1ca4d8546a2c0c 6SHA1 (patch-ac) = 14398273b8169d26f89262310c1ca4d8546a2c0c
7SHA1 (patch-config.h.in) = 88c67de7708c958674de7f222937739dd9f7fc00 7SHA1 (patch-config.h.in) = 88c67de7708c958674de7f222937739dd9f7fc00
8SHA1 (patch-configure) = 22924508b9af1b428dfe41413ff46b5592d17c48 8SHA1 (patch-configure) = 22924508b9af1b428dfe41413ff46b5592d17c48
9SHA1 (patch-configure.ac) = f6d86f0e1be3fc7124f0a83c04667f30e07e71b2 
10SHA1 (patch-scripts_Makefile.in) = 1d1f2230fc861f222f44b9541d52c157a23c16dc 9SHA1 (patch-scripts_Makefile.in) = 1d1f2230fc861f222f44b9541d52c157a23c16dc
11SHA1 (patch-settings_xfce4-session.xml) = 6607e682df06674c4e6a3219b911f58f756cfab7 10SHA1 (patch-settings_xfce4-session.xml) = 6607e682df06674c4e6a3219b911f58f756cfab7
12SHA1 (patch-xfsm-shutdown-helper_main.c) = 93d2322ed90bef8b17427c1cb32e2fe87f614b04 11SHA1 (patch-xfsm-shutdown-helper_main.c) = 93d2322ed90bef8b17427c1cb32e2fe87f614b04

File Added: pkgsrc/x11/xfce4-session/patches/patch-config.h.in
$NetBSD: patch-config.h.in,v 1.1 2015/07/02 13:15:58 youri Exp $

Add NetBSD backend.
--- config.h.in.orig	2015-03-16 07:29:52.000000000 +0000
+++ config.h.in
@@ -12,6 +12,9 @@
 /* OpenBSD suspend/hibernate backend */
 #undef BACKEND_TYPE_OPENBSD
 
+/* NetBSD suspend/hibernate backend */
+#undef BACKEND_TYPE_NETBSD
+
 /* Define for debugging support */
 #undef DEBUG
 

File Added: pkgsrc/x11/xfce4-session/patches/patch-configure
$NetBSD: patch-configure,v 1.1 2015/07/02 13:15:58 youri Exp $

Add NetBSD backend detection.
--- configure.orig	2015-06-29 16:19:21.000000000 +0000
+++ configure
@@ -18208,6 +18208,8 @@ if test x$with_backend = x; then
     with_backend=freebsd ;; #(
   *-*dragonfly*) :
     with_backend=freebsd ;; #(
+  *-*netbsd*) :
+    with_backend=netbsd ;; #(
   *-openbsd*) :
     with_backend=openbsd ;; #(
   *) :
@@ -18237,6 +18239,11 @@ if test x$with_backend = xopenbsd; then
 $as_echo "#define BACKEND_TYPE_OPENBSD 1" >>confdefs.h
 
 fi
+if test x$with_backend = xnetbsd; then
+
+$as_echo "#define BACKEND_TYPE_NETBSD 1" >>confdefs.h
+
+fi
 
 XFCE_GLADE_CATALOG_PATH="`pkg-config --variable glade_catalogdir libxfce4ui-1`"
 XFCE_GLADE_PIXMAP_PATH="`pkg-config --variable glade_pixmapdir libxfce4ui-1`"

File Added: pkgsrc/x11/xfce4-session/patches/patch-xfsm-shutdown-helper_main.c
$NetBSD: patch-xfsm-shutdown-helper_main.c,v 1.1 2015/07/02 13:15:58 youri Exp $

Add NetBSD commands.
--- xfsm-shutdown-helper/main.c.orig	2014-08-28 15:52:27.000000000 +0000
+++ xfsm-shutdown-helper/main.c
@@ -91,7 +91,10 @@
 #define UP_BACKEND_SUSPEND_COMMAND	"/usr/sbin/zzz"
 #define UP_BACKEND_HIBERNATE_COMMAND "/usr/sbin/ZZZ"
 #endif
-
+#ifdef BACKEND_TYPE_NETBSD
+#define UP_BACKEND_SUSPEND_COMMAND      "/usr/sbin/zzz"
+#define UP_BACKEND_HIBERNATE_COMMAND    "/usr/sbin/zzz"
+#endif
 
 static gboolean
 run (const gchar *command)

File Deleted: pkgsrc/x11/xfce4-session/patches/Attic/patch-scripts_startxfce4.in