summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authormartti <martti@pkgsrc.org>2004-02-04 11:51:57 +0000
committermartti <martti@pkgsrc.org>2004-02-04 11:51:57 +0000
commitb854453dc68eb9a05ae63a32eb3cfe7c2b2e7b34 (patch)
tree83031730f1e8b57a8a691262533ef23d3cab9f0b /x11
parent458d80e0d4f879a69ed73ce2c7a197da6ac7872b (diff)
downloadpkgsrc-b854453dc68eb9a05ae63a32eb3cfe7c2b2e7b34.tar.gz
Updated xfce4-menueditor to 1.0rc3nb1 (pkg/24311 by Cesar Catrian C.)
Diffstat (limited to 'x11')
-rw-r--r--x11/xfce4-menueditor/Makefile3
-rw-r--r--x11/xfce4-menueditor/distinfo3
-rw-r--r--x11/xfce4-menueditor/patches/patch-aa36
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)