From 14fb53c398d7ce5d33c221655643ec51c3a92a6f Mon Sep 17 00:00:00 2001 From: Constantin Musca Date: Mon, 24 Dec 2012 10:34:26 +0200 Subject: pcmanfm: upgrade to 1.1.0 pcmanfm_fix_for_automake_1.12.patch: removed - problem not reprodicible anymore owl-window-menu.patch: removed - not needed anymore Signed-off-by: Constantin Musca Signed-off-by: Saul Wold --- .../pcmanfm/files/owl-window-menu.patch | 81 ---------------------- .../files/pcmanfm_fix_for_automake_1.12.patch | 35 ---------- meta/recipes-sato/pcmanfm/pcmanfm_0.9.10.bb | 38 ---------- meta/recipes-sato/pcmanfm/pcmanfm_1.1.0.bb | 35 ++++++++++ 4 files changed, 35 insertions(+), 154 deletions(-) delete mode 100644 meta/recipes-sato/pcmanfm/files/owl-window-menu.patch delete mode 100644 meta/recipes-sato/pcmanfm/files/pcmanfm_fix_for_automake_1.12.patch delete mode 100644 meta/recipes-sato/pcmanfm/pcmanfm_0.9.10.bb create mode 100644 meta/recipes-sato/pcmanfm/pcmanfm_1.1.0.bb (limited to 'meta/recipes-sato') diff --git a/meta/recipes-sato/pcmanfm/files/owl-window-menu.patch b/meta/recipes-sato/pcmanfm/files/owl-window-menu.patch deleted file mode 100644 index 88b154e5cb..0000000000 --- a/meta/recipes-sato/pcmanfm/files/owl-window-menu.patch +++ /dev/null @@ -1,81 +0,0 @@ -0.9.7 use a new menu bar from gtk_ui_manager, so need a translation here to -enable owl menu - -Signed-off-by: Zhai Edwin - -Upstream-Status: Inappropriate [enable feature] - -Index: pcmanfm-0.9.9/configure.ac -=================================================================== ---- pcmanfm-0.9.9.orig/configure.ac 2011-08-10 05:28:31.000000000 +0800 -+++ pcmanfm-0.9.9/configure.ac 2011-10-10 15:47:33.000000000 +0800 -@@ -70,6 +70,8 @@ - - gtk_modules="gtk+-2.0 >= 2.16.0" - PKG_CHECK_MODULES(GTK, [$gtk_modules]) -+OWL_LIBS="-lowl" -+GTK_LIBS="$GTK_LIBS $OWL_LIBS" - AC_SUBST(GTK_CFLAGS) - AC_SUBST(GTK_LIBS) - -Index: pcmanfm-0.9.9/src/main-win.c -=================================================================== ---- pcmanfm-0.9.9.orig/src/main-win.c 2011-08-10 05:28:32.000000000 +0800 -+++ pcmanfm-0.9.9/src/main-win.c 2011-10-10 15:50:48.000000000 +0800 -@@ -37,6 +37,8 @@ - #include "pref.h" - #include "tab-page.h" - -+#include "libowl/owlwindowmenu.h" -+ - static void fm_main_win_finalize (GObject *object); - G_DEFINE_TYPE(FmMainWin, fm_main_win, GTK_TYPE_WINDOW); - -@@ -400,9 +402,27 @@ - } - } - -+/* Transfer gtk_ui_manager menubar to gtk menubar */ -+static GtkWidget * ui_menubar_to_menu(GtkWidget *menubar) -+{ -+ GtkWidget *main_menu; -+ GList *iter; -+ -+ main_menu = gtk_menu_new(); -+ -+ for ( iter = gtk_container_get_children(GTK_CONTAINER(menubar)); -+ iter; -+ iter = g_list_next(iter) ) -+ { -+ GtkWidget *menu = GTK_WIDGET(iter->data); -+ gtk_widget_reparent(menu, main_menu); -+ } -+ return main_menu; -+} -+ - static void fm_main_win_init(FmMainWin *win) - { -- GtkWidget *vbox, *menubar, *toolitem, *btn; -+ GtkWidget *vbox, *menubar, *owl_menubar, *toolitem, *btn; - GtkUIManager* ui; - GtkActionGroup* act_grp; - GtkAction* act; -@@ -456,7 +476,6 @@ - win->popup = gtk_ui_manager_get_widget(ui, "/popup"); - gtk_menu_attach_to_widget(GTK_WIDGET(win->popup), win, NULL); - -- gtk_box_pack_start( (GtkBox*)vbox, menubar, FALSE, TRUE, 0 ); - gtk_box_pack_start( (GtkBox*)vbox, win->toolbar, FALSE, TRUE, 0 ); - - /* load bookmarks menu */ -@@ -517,6 +536,10 @@ - - gtk_container_add( (GtkContainer*)win, vbox ); - gtk_widget_show_all(vbox); -+ -+ owl_menubar = ui_menubar_to_menu(menubar); -+ gtk_widget_show_all(owl_menubar); -+ owl_set_window_menu(GTK_WINDOW(win), GTK_MENU(owl_menubar)); - } - - diff --git a/meta/recipes-sato/pcmanfm/files/pcmanfm_fix_for_automake_1.12.patch b/meta/recipes-sato/pcmanfm/files/pcmanfm_fix_for_automake_1.12.patch deleted file mode 100644 index 1ad0ff5d13..0000000000 --- a/meta/recipes-sato/pcmanfm/files/pcmanfm_fix_for_automake_1.12.patch +++ /dev/null @@ -1,35 +0,0 @@ -Upstream-Status: Pending - -Fix these errors: -| automake: warnings are treated as errors -| data/ui/Makefile.am:18: warning: '%'-style pattern rules are a GNU make extension -| src/Makefile.am:10: warning: compiling 'pcmanfm.c' with per-target flags requires 'AM_PROG_CC_C_O' in 'configure.ac' -| autoreconf: automake failed with exit status: 1 -| ERROR: autoreconf execution failed. -Signed-Off-By: Nitin A Kamble -2012/07/09 - -Index: pcmanfm-0.9.10/configure.ac -=================================================================== ---- pcmanfm-0.9.10.orig/configure.ac -+++ pcmanfm-0.9.10/configure.ac -@@ -13,6 +13,7 @@ AC_PROG_CC - AM_PROG_LIBTOOL - AM_PROG_CC_STDC - AC_HEADER_STDC -+AM_PROG_CC_C_O - - # Checks for header files. - AC_HEADER_STDC -Index: pcmanfm-0.9.10/data/ui/Makefile.am -=================================================================== ---- pcmanfm-0.9.10.orig/data/ui/Makefile.am -+++ pcmanfm-0.9.10/data/ui/Makefile.am -@@ -15,6 +15,6 @@ EXTRA_DIST = \ - $(NULL) - - # Purge GtkBuilder UI files --%.ui: %.glade -+.glade.ui: - cp $< $@ - # $(top_builddir)/src/xml-purge $@ diff --git a/meta/recipes-sato/pcmanfm/pcmanfm_0.9.10.bb b/meta/recipes-sato/pcmanfm/pcmanfm_0.9.10.bb deleted file mode 100644 index 1780764104..0000000000 --- a/meta/recipes-sato/pcmanfm/pcmanfm_0.9.10.bb +++ /dev/null @@ -1,38 +0,0 @@ -DESCRIPTION = "Fast lightweight tabbed filemanager" -HOMEPAGE = "http://pcmanfm.sourceforge.net/" -BUGTRACKER = "" - -LICENSE = "GPLv2 & GPLv2+ & LGPLv2.1+" -LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ - file://src/pcmanfm.h;endline=22;md5=417b3855771a3a87f8ad753d994491f0 \ - file://src/gseal-gtk-compat.h;endline=21;md5=46922c8691f58d124f9420fe16149ce2" - -SECTION = "x11" -DEPENDS = "gtk+ startup-notification libfm" -DEPENDS_append_poky = " libowl" - -PR = "r1" - -COMPATIBLE_HOST = '(x86_64.*|i.86.*|aarch64.*|arm.*|mips.*|powerpc.*|sh.*)-(linux|freebsd.*)' - -SRC_URI = "${SOURCEFORGE_MIRROR}/pcmanfm/pcmanfm-${PV}.tar.gz \ - file://gnome-fs-directory.png \ - file://gnome-fs-regular.png \ - file://gnome-mime-text-plain.png \ - file://emblem-symbolic-link.png \ - file://cross-compile-fix.patch \ - file://pcmanfm_fix_for_automake_1.12.patch" - -SRC_URI_append_poky = " file://owl-window-menu.patch" - -SRC_URI[md5sum] = "d34a3530a6c5dcd674d23021d71c3e95" -SRC_URI[sha256sum] = "f133c6f207f719d1fc69fe8bc07b2de6883c6937ffa87448df42e3b1a30e0298" - -inherit autotools pkgconfig - -do_install_append () { - install -d ${D}/${datadir} - install -d ${D}/${datadir}/pixmaps/ - - install -m 0644 ${WORKDIR}/*.png ${D}/${datadir}/pixmaps -} diff --git a/meta/recipes-sato/pcmanfm/pcmanfm_1.1.0.bb b/meta/recipes-sato/pcmanfm/pcmanfm_1.1.0.bb new file mode 100644 index 0000000000..bcfc9db08b --- /dev/null +++ b/meta/recipes-sato/pcmanfm/pcmanfm_1.1.0.bb @@ -0,0 +1,35 @@ +DESCRIPTION = "Fast lightweight tabbed filemanager" +HOMEPAGE = "http://pcmanfm.sourceforge.net/" +BUGTRACKER = "" + +LICENSE = "GPLv2 & GPLv2+ & LGPLv2.1+" +LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ + file://src/pcmanfm.h;endline=22;md5=417b3855771a3a87f8ad753d994491f0 \ + file://src/gseal-gtk-compat.h;endline=21;md5=46922c8691f58d124f9420fe16149ce2" + +SECTION = "x11" +DEPENDS = "gtk+ startup-notification libfm" +DEPENDS_append_poky = " libowl" + +PR = "r0" + +COMPATIBLE_HOST = '(x86_64.*|i.86.*|aarch64.*|arm.*|mips.*|powerpc.*|sh.*)-(linux|freebsd.*)' + +SRC_URI = "${SOURCEFORGE_MIRROR}/pcmanfm/pcmanfm-${PV}.tar.gz \ + file://gnome-fs-directory.png \ + file://gnome-fs-regular.png \ + file://gnome-mime-text-plain.png \ + file://emblem-symbolic-link.png \ + file://cross-compile-fix.patch" + +SRC_URI[md5sum] = "af0cff78690e658f3c06ceabf27bc71a" +SRC_URI[sha256sum] = "1f6301f330ad648f3322708ec6c0f680a8695a9453932fe19653bab6731e5582" + +inherit autotools pkgconfig + +do_install_append () { + install -d ${D}/${datadir} + install -d ${D}/${datadir}/pixmaps/ + + install -m 0644 ${WORKDIR}/*.png ${D}/${datadir}/pixmaps +} -- cgit 1.2.3-korg