All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-xfce 1/4] README: Changed email address
@ 2012-01-29 13:59 Andreas Müller
  2012-01-29 13:59 ` [meta-xfce 2/4] xfce4-genmon-plugin: initial add 3.3.1 Andreas Müller
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Andreas Müller @ 2012-01-29 13:59 UTC (permalink / raw)
  To: openembedded-devel


Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 meta-xfce/README |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta-xfce/README b/meta-xfce/README
index c7186be..6e021e1 100644
--- a/meta-xfce/README
+++ b/meta-xfce/README
@@ -12,4 +12,4 @@ Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-xfce
 
 When sending single patches, please using something like 'git send-email -1 --to openembedded-devel@lists.openembedded.org --subject-prefix meta-xfce'
 
-Interim layer maintainer: Andreas Müller <schnitzeltony@gmx.de>
+Interim layer maintainer: Andreas Müller <schnitzeltony@googlemail.com>
-- 
1.7.4.4




^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [meta-xfce 2/4] xfce4-genmon-plugin: initial add 3.3.1
  2012-01-29 13:59 [meta-xfce 1/4] README: Changed email address Andreas Müller
@ 2012-01-29 13:59 ` Andreas Müller
  2012-01-29 15:50   ` Koen Kooi
  2012-01-29 13:59 ` [meta-xfce 3/4] task-xfce-extended: add xfce4-genmon-plugin Andreas Müller
  2012-01-29 13:59 ` [meta-xfce 4/4] ristretto: update to 0.3.4 Andreas Müller
  2 siblings, 1 reply; 5+ messages in thread
From: Andreas Müller @ 2012-01-29 13:59 UTC (permalink / raw)
  To: openembedded-devel

* build tested from scratch
* run tested on overo

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 .../genmon/files/port-to-libxfce4ui.patch          |  150 ++++++++++++++++++++
 .../genmon/xfce4-genmon-plugin_3.3.1.bb            |   11 ++
 2 files changed, 161 insertions(+), 0 deletions(-)
 create mode 100644 meta-xfce/recipes-panel-plugins/genmon/files/port-to-libxfce4ui.patch
 create mode 100644 meta-xfce/recipes-panel-plugins/genmon/xfce4-genmon-plugin_3.3.1.bb

diff --git a/meta-xfce/recipes-panel-plugins/genmon/files/port-to-libxfce4ui.patch b/meta-xfce/recipes-panel-plugins/genmon/files/port-to-libxfce4ui.patch
new file mode 100644
index 0000000..ebb9405
--- /dev/null
+++ b/meta-xfce/recipes-panel-plugins/genmon/files/port-to-libxfce4ui.patch
@@ -0,0 +1,150 @@
+From 57e2a3787261ccc33f47d4d4061148d720d88d7d Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
+Date: Thu, 26 Jan 2012 00:45:31 +0100
+Subject: [PATCH] port to libxfce4ui
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+Upstrem atatus: pending https://bugzilla.xfce.org/show_bug.cgi?id=8406
+
+
+Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
+---
+ configure.ac              |    4 ++--
+ panel-plugin/Makefile.am  |    4 ++--
+ panel-plugin/cmdspawn.c   |    2 +-
+ panel-plugin/config_gui.c |    2 +-
+ panel-plugin/config_gui.h |    1 -
+ panel-plugin/main.c       |   17 ++++++-----------
+ 6 files changed, 12 insertions(+), 18 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index b9d5bd3..a04d0ec 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -31,8 +31,8 @@ dnl Check for standard header files
+ AC_HEADER_STDC
+ 
+ dnl configure the panel plugin
+-XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.3.22])
+-XDT_CHECK_PACKAGE([LIBXFCEGUI4], [libxfcegui4-1.0], [4.2.0])
++XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.8.0])
++XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-1], [4.8.0])
+ 
+ dnl Translations
+ XDT_I18N([@LINGUAS@])
+diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
+index 861a466..f819ff6 100644
+--- a/panel-plugin/Makefile.am
++++ b/panel-plugin/Makefile.am
+@@ -4,11 +4,11 @@ plugin_PROGRAMS = xfce4-genmon-plugin
+ xfce4_genmon_plugin_CFLAGS =					\
+ 	-DPACKAGE_LOCALE_DIR=\"$(localedir)\"			\
+ 	@LIBXFCE4PANEL_CFLAGS@					\
+-	@LIBXFCEGUI4_CFLAGS@
++	@LIBXFCE4UI_CFLAGS@
+ 
+ xfce4_genmon_plugin_LDADD =					\
+ 	@LIBXFCE4PANEL_LIBS@					\
+-	@LIBXFCEGUI4_LIBS@
++	@LIBXFCE4UI_LIBS@
+ 
+ xfce4_genmon_plugin_SOURCES =	\
+ 	main.c			\
+diff --git a/panel-plugin/cmdspawn.c b/panel-plugin/cmdspawn.c
+index aef7689..ae9de82 100644
+--- a/panel-plugin/cmdspawn.c
++++ b/panel-plugin/cmdspawn.c
+@@ -49,7 +49,7 @@
+ #include <stdarg.h>
+ #include <errno.h>
+ #include <sys/wait.h>
+-#include <libxfcegui4/libxfcegui4.h>
++#include <libxfce4ui/libxfce4ui.h>
+ 
+ 
+ /**********************************************************************/
+diff --git a/panel-plugin/config_gui.c b/panel-plugin/config_gui.c
+index 49ef267..3550c35 100644
+--- a/panel-plugin/config_gui.c
++++ b/panel-plugin/config_gui.c
+@@ -28,7 +28,7 @@
+ #include <gtk/gtk.h>
+ 
+ #include <libxfce4util/libxfce4util.h>
+-#include <libxfcegui4/dialogs.h>
++#include <libxfce4ui/libxfce4ui.h>
+ #include <libxfce4panel/xfce-panel-plugin.h>
+ 
+ 
+diff --git a/panel-plugin/config_gui.h b/panel-plugin/config_gui.h
+index 84024b2..c6bb672 100644
+--- a/panel-plugin/config_gui.h
++++ b/panel-plugin/config_gui.h
+@@ -29,7 +29,6 @@
+ #include <gtk/gtk.h>
+ 
+ #include <libxfce4util/libxfce4util.h>
+-#include <libxfcegui4/dialogs.h>
+ #include <libxfce4panel/xfce-panel-plugin.h>
+ 
+ 
+diff --git a/panel-plugin/main.c b/panel-plugin/main.c
+index 1f741ee..14cf778 100644
+--- a/panel-plugin/main.c
++++ b/panel-plugin/main.c
+@@ -31,8 +31,7 @@
+ #include <gtk/gtk.h>
+ 
+ #include <libxfce4util/libxfce4util.h>
+-#include <libxfcegui4/dialogs.h>
+-#include <libxfcegui4/xfce-exec.h>
++#include <libxfce4ui/libxfce4ui.h>
+ #include <libxfce4panel/xfce-panel-plugin.h>
+ #include <libxfce4panel/xfce-panel-convenience.h>
+ 
+@@ -98,7 +97,7 @@ static void ExecOnClickCmd (Widget_t p_wSc, void *p_pvPlugin)
+     struct monitor_t *poMonitor = &(poPlugin->oMonitor);
+     GError *error = NULL;
+ 
+-	xfce_exec(poMonitor->onClickCmd, 0, 0, &error);
++    xfce_spawn_command_line_on_screen( gdk_screen_get_default(), poMonitor->onClickCmd, 0, 0, &error );
+     if (error) {
+         char first[256];
+         g_snprintf (first, sizeof(first), _("Could not run \"%s\""), poMonitor->onClickCmd);
+@@ -592,7 +591,8 @@ static void UpdateConf (void *p_pvPlugin)
+ static void About (Widget_t w, void *unused)
+ /* Called back when the About button in clicked */
+ {
+-    xfce_info (_("%s %s - Generic Monitor\n"
++    xfce_dialog_show_info (NULL, NULL, 
++        _("%s %s - Generic Monitor\n"
+         "Cyclically spawns a script/program, captures its output "
+         "and displays the resulting string in the panel\n\n"
+         "(c) 2004 Roger Seguin <roger_seguin@msn.com>\n"
+@@ -646,7 +646,7 @@ static void genmon_create_options (XfcePanelPlugin *plugin,
+ /* Plugin API */
+ /* Create/pop up the configuration/options GUI */
+ {
+-    GtkWidget *dlg, *header, *vbox;
++    GtkWidget *dlg, *vbox;
+     struct param_t *poConf = &(poPlugin->oConf.oParam);
+     struct gui_t   *poGUI = &(poPlugin->oConf.oGUI);
+     const char     *pcFont = poConf->acFont;
+@@ -667,12 +667,7 @@ static void genmon_create_options (XfcePanelPlugin *plugin,
+ 
+     gtk_container_set_border_width (GTK_CONTAINER (dlg), 2);
+ 
+-    header = xfce_create_header (NULL, _("Generic Monitor"));
+-    gtk_widget_set_size_request (GTK_BIN (header)->child, -1, 32);
+-    gtk_container_set_border_width (GTK_CONTAINER (header), BORDER - 2);
+-    gtk_widget_show (header);
+-    gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dlg)->vbox), header,
+-        FALSE, TRUE, 0);
++    xfce_titled_dialog_set_subtitle (XFCE_TITLED_DIALOG (dlg), _("Generic Monitor"));
+ 
+     vbox = gtk_vbox_new(FALSE, BORDER);
+     gtk_container_set_border_width (GTK_CONTAINER (vbox), BORDER - 2);
+-- 
+1.7.4.4
+
diff --git a/meta-xfce/recipes-panel-plugins/genmon/xfce4-genmon-plugin_3.3.1.bb b/meta-xfce/recipes-panel-plugins/genmon/xfce4-genmon-plugin_3.3.1.bb
new file mode 100644
index 0000000..d2ed4fe
--- /dev/null
+++ b/meta-xfce/recipes-panel-plugins/genmon/xfce4-genmon-plugin_3.3.1.bb
@@ -0,0 +1,11 @@
+DESCRIPTION = "This plugin cyclically spawns the indicated script/program, captures its output (stdout) and displays the resulting string into the panel."
+HOMEPAGE = "http://goodies.xfce.org/projects/panel-plugins/xfce4-genmon-plugin"
+LICENSE = "LGPLv2.1"
+LIC_FILES_CHKSUM = "file://COPYING;md5=68ad62c64cc6c620126241fd429e68fe"
+
+inherit xfce-panel-plugin
+
+SRC_URI += "file://port-to-libxfce4ui.patch"
+
+SRC_URI[md5sum] = "e0022e15d4211a87c17d9f252b68e1d3"
+SRC_URI[sha256sum] = "fe439d569f9ba3c8bdbfa907022a7c4a697ae4ae7fc5001a5600dfa5e1793471"
-- 
1.7.4.4




^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [meta-xfce 3/4] task-xfce-extended: add xfce4-genmon-plugin
  2012-01-29 13:59 [meta-xfce 1/4] README: Changed email address Andreas Müller
  2012-01-29 13:59 ` [meta-xfce 2/4] xfce4-genmon-plugin: initial add 3.3.1 Andreas Müller
@ 2012-01-29 13:59 ` Andreas Müller
  2012-01-29 13:59 ` [meta-xfce 4/4] ristretto: update to 0.3.4 Andreas Müller
  2 siblings, 0 replies; 5+ messages in thread
From: Andreas Müller @ 2012-01-29 13:59 UTC (permalink / raw)
  To: openembedded-devel


Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 meta-xfce/recipes-xfce/tasks/task-xfce-extended.bb |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/meta-xfce/recipes-xfce/tasks/task-xfce-extended.bb b/meta-xfce/recipes-xfce/tasks/task-xfce-extended.bb
index 122252f..2dbd9f0 100644
--- a/meta-xfce/recipes-xfce/tasks/task-xfce-extended.bb
+++ b/meta-xfce/recipes-xfce/tasks/task-xfce-extended.bb
@@ -3,6 +3,8 @@ SECTION = "x11/wm"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
 
+PR = "r1"
+
 inherit task
 
 # mandatory
@@ -30,6 +32,7 @@ RRECOMMENDS_${PN} = " \
     xfce4-clipman-plugin \
     xfce4-diskperf-plugin \
     xfce4-netload-plugin \
+    xfce4-genmon-plugin \
     \
     xfce4-appfinder \
     xfce4-screenshooter \
-- 
1.7.4.4




^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [meta-xfce 4/4] ristretto: update to 0.3.4
  2012-01-29 13:59 [meta-xfce 1/4] README: Changed email address Andreas Müller
  2012-01-29 13:59 ` [meta-xfce 2/4] xfce4-genmon-plugin: initial add 3.3.1 Andreas Müller
  2012-01-29 13:59 ` [meta-xfce 3/4] task-xfce-extended: add xfce4-genmon-plugin Andreas Müller
@ 2012-01-29 13:59 ` Andreas Müller
  2 siblings, 0 replies; 5+ messages in thread
From: Andreas Müller @ 2012-01-29 13:59 UTC (permalink / raw)
  To: openembedded-devel

* build tested from scratch
* run tested on overo

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 .../{ristretto_0.3.2.bb => ristretto_0.3.4.bb}     |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
 rename meta-xfce/recipes-apps/ristretto/{ristretto_0.3.2.bb => ristretto_0.3.4.bb} (70%)

diff --git a/meta-xfce/recipes-apps/ristretto/ristretto_0.3.2.bb b/meta-xfce/recipes-apps/ristretto/ristretto_0.3.4.bb
similarity index 70%
rename from meta-xfce/recipes-apps/ristretto/ristretto_0.3.2.bb
rename to meta-xfce/recipes-apps/ristretto/ristretto_0.3.4.bb
index 3a167c1..00133c6 100644
--- a/meta-xfce/recipes-apps/ristretto/ristretto_0.3.2.bb
+++ b/meta-xfce/recipes-apps/ristretto/ristretto_0.3.4.bb
@@ -9,5 +9,5 @@ inherit xfce-app
 
 RRECOMMENDS_${PN} += "tumbler"
 
-SRC_URI[md5sum] = "ab54fffe197c220bf26553c9a4f95658"
-SRC_URI[sha256sum] = "a28c9e472c329b5f3136ebea887dec5ba93a37d5562b493633161392aff5545f"
+SRC_URI[md5sum] = "86c042ee4ffefb0ff5e806849ec4d33c"
+SRC_URI[sha256sum] = "e2ed5c6bc3f56cf82942c54d1492e54607ccf073c7963c1df5fa2cd3a9a71a32"
-- 
1.7.4.4




^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [meta-xfce 2/4] xfce4-genmon-plugin: initial add 3.3.1
  2012-01-29 13:59 ` [meta-xfce 2/4] xfce4-genmon-plugin: initial add 3.3.1 Andreas Müller
@ 2012-01-29 15:50   ` Koen Kooi
  0 siblings, 0 replies; 5+ messages in thread
From: Koen Kooi @ 2012-01-29 15:50 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Op 29-01-12 14:59, Andreas Müller schreef:
> * build tested from scratch * run tested on overo
> 
> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> --- 
> .../genmon/files/port-to-libxfce4ui.patch          |  150
> ++++++++++++++++++++ .../genmon/xfce4-genmon-plugin_3.3.1.bb            |
> 11 ++ 2 files changed, 161 insertions(+), 0 deletions(-) create mode
> 100644
> meta-xfce/recipes-panel-plugins/genmon/files/port-to-libxfce4ui.patch 
> create mode 100644
> meta-xfce/recipes-panel-plugins/genmon/xfce4-genmon-plugin_3.3.1.bb
> 
> diff --git
> a/meta-xfce/recipes-panel-plugins/genmon/files/port-to-libxfce4ui.patch
> b/meta-xfce/recipes-panel-plugins/genmon/files/port-to-libxfce4ui.patch 
> new file mode 100644 index 0000000..ebb9405 --- /dev/null +++
> b/meta-xfce/recipes-panel-plugins/genmon/files/port-to-libxfce4ui.patch 
> @@ -0,0 +1,150 @@

> +Upstrem atatus: pending https://bugzilla.xfce.org/show_bug.cgi?id=8406

Typo :)
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (Darwin)
Comment: GPGTools - http://gpgtools.org

iEYEARECAAYFAk8laq4ACgkQMkyGM64RGpEW0gCcCHLq0ilyrh1e4GxNPF3jEPmy
ZLMAniNJWXPuojV7+97xUZiSlcsSID3x
=2XhH
-----END PGP SIGNATURE-----




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-01-29 16:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-29 13:59 [meta-xfce 1/4] README: Changed email address Andreas Müller
2012-01-29 13:59 ` [meta-xfce 2/4] xfce4-genmon-plugin: initial add 3.3.1 Andreas Müller
2012-01-29 15:50   ` Koen Kooi
2012-01-29 13:59 ` [meta-xfce 3/4] task-xfce-extended: add xfce4-genmon-plugin Andreas Müller
2012-01-29 13:59 ` [meta-xfce 4/4] ristretto: update to 0.3.4 Andreas Müller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.