diff options
author | martti <martti> | 2004-02-04 11:51:57 +0000 |
---|---|---|
committer | martti <martti> | 2004-02-04 11:51:57 +0000 |
commit | 69227769f1a09ac89a0751008dfbaa46b728bc45 (patch) | |
tree | 83031730f1e8b57a8a691262533ef23d3cab9f0b /x11 | |
parent | 398c5774dcba41379e1d7fd838eeafb4a6c48fd0 (diff) | |
download | pkgsrc-69227769f1a09ac89a0751008dfbaa46b728bc45.tar.gz |
Updated xfce4-menueditor to 1.0rc3nb1 (pkg/24311 by Cesar Catrian C.)
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xfce4-menueditor/Makefile | 3 | ||||
-rw-r--r-- | x11/xfce4-menueditor/distinfo | 3 | ||||
-rw-r--r-- | x11/xfce4-menueditor/patches/patch-aa | 36 |
3 files changed, 40 insertions, 2 deletions
diff --git a/x11/xfce4-menueditor/Makefile b/x11/xfce4-menueditor/Makefile index 227f0307633..4a8ced7ca76 100644 --- a/x11/xfce4-menueditor/Makefile +++ b/x11/xfce4-menueditor/Makefile @@ -1,10 +1,11 @@ -# $NetBSD: Makefile,v 1.1.1.1 2004/01/26 16:33:37 martti Exp $ +# $NetBSD: Makefile,v 1.2 2004/02/04 11:51:57 martti Exp $ .include "../../meta-pkgs/xfce4/Makefile.common" XFCE4_VERSION= 1.0rc3 DISTNAME= xfce4-menueditor-${XFCE4_VERSION} +PKGREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://users.skynet.be/p0llux/files/ COMMENT= XFce4 menu editor diff --git a/x11/xfce4-menueditor/distinfo b/x11/xfce4-menueditor/distinfo index ec14bbde445..547c505969b 100644 --- a/x11/xfce4-menueditor/distinfo +++ b/x11/xfce4-menueditor/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.1.1.1 2004/01/26 16:33:37 martti Exp $ +$NetBSD: distinfo,v 1.2 2004/02/04 11:51:57 martti Exp $ SHA1 (xfce4-menueditor-1.0rc3.tar.bz2) = 26518275618fd3abbc5ef76a26d5a66a900a5ab6 Size (xfce4-menueditor-1.0rc3.tar.bz2) = 170156 bytes +SHA1 (patch-aa) = d45f6ac9e129953f69d0d89ee1c483cc39839b4d diff --git a/x11/xfce4-menueditor/patches/patch-aa b/x11/xfce4-menueditor/patches/patch-aa new file mode 100644 index 00000000000..e374836879c --- /dev/null +++ b/x11/xfce4-menueditor/patches/patch-aa @@ -0,0 +1,36 @@ +$NetBSD: patch-aa,v 1.1 2004/02/04 11:51:57 martti Exp $ + +--- menueditor/menueditor.c.orig 2004-01-25 22:12:52.000000000 +0200 ++++ menueditor/menueditor.c 2004-02-04 13:42:57.000000000 +0200 +@@ -283,13 +283,14 @@ + /* Check if there is no other file opened */ + if(menueditor_app.xml_menu_file != NULL){ + if(menueditor_app.menu_modified==TRUE){ ++ gint response; + GtkWidget *dialog = gtk_message_dialog_new(GTK_WINDOW(menueditor_app.main_window), + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_QUESTION, + GTK_BUTTONS_YES_NO, + _("Do you want to save before closing the file ?")); + +- gint response = gtk_dialog_run(GTK_DIALOG(dialog)); ++ response = gtk_dialog_run(GTK_DIALOG(dialog)); + gtk_widget_destroy(dialog); + + if(response==GTK_RESPONSE_YES) +@@ -320,13 +321,14 @@ + /* Check if there is no other file opened */ + if(menueditor_app.xml_menu_file != NULL){ + if(menueditor_app.menu_modified==TRUE){ ++ gint response; + GtkWidget *dialog = gtk_message_dialog_new(GTK_WINDOW(menueditor_app.main_window), + GTK_DIALOG_DESTROY_WITH_PARENT, + GTK_MESSAGE_QUESTION, + GTK_BUTTONS_YES_NO, + _("Do you want to save before closing the file ?")); + +- gint response = gtk_dialog_run(GTK_DIALOG(dialog)); ++ response = gtk_dialog_run(GTK_DIALOG(dialog)); + gtk_widget_destroy(dialog); + + if(response==GTK_RESPONSE_YES) |