diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-03-18 18:35:01 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-03-18 18:35:01 +0000 |
commit | 9637a097908b3fd1c6d065aa3c6e06fe451c56f5 (patch) | |
tree | 2854f6071b0be69ba5d7947bfb17d10b7c873c58 /x11-apps/xmore | |
parent | Update ewarn to explicitly state what ebuild is broken (diff) | |
download | gentoo-2-9637a097908b3fd1c6d065aa3c6e06fe451c56f5.tar.gz gentoo-2-9637a097908b3fd1c6d065aa3c6e06fe451c56f5.tar.bz2 gentoo-2-9637a097908b3fd1c6d065aa3c6e06fe451c56f5.zip |
Drop useless patch
(Portage version: 2.2.0_alpha26/cvs/Linux x86_64)
Diffstat (limited to 'x11-apps/xmore')
-rw-r--r-- | x11-apps/xmore/ChangeLog | 6 | ||||
-rw-r--r-- | x11-apps/xmore/files/xmore-1.0.1-ifdef-xprint.patch | 27 |
2 files changed, 5 insertions, 28 deletions
diff --git a/x11-apps/xmore/ChangeLog b/x11-apps/xmore/ChangeLog index e5141ae8a176..33115a42867a 100644 --- a/x11-apps/xmore/ChangeLog +++ b/x11-apps/xmore/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-apps/xmore # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-apps/xmore/ChangeLog,v 1.31 2011/02/14 23:41:00 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xmore/ChangeLog,v 1.32 2011/03/18 18:35:01 scarabeus Exp $ + + 18 Mar 2011; Tomáš Chvátal <scarabeus@gentoo.org> + -files/xmore-1.0.1-ifdef-xprint.patch: + Drop useless patch 14 Feb 2011; Kacper Kowalik <xarthisius@gentoo.org> xmore-1.0.2.ebuild: ppc stable wrt #344827, #354237 diff --git a/x11-apps/xmore/files/xmore-1.0.1-ifdef-xprint.patch b/x11-apps/xmore/files/xmore-1.0.1-ifdef-xprint.patch deleted file mode 100644 index af48f7f3005c..000000000000 --- a/x11-apps/xmore/files/xmore-1.0.1-ifdef-xprint.patch +++ /dev/null @@ -1,27 +0,0 @@ -diff -ur xmore-1.0.1.orig/xmore.c xmore-1.0.1/xmore.c ---- xmore-1.0.1.orig/xmore.c 2005-07-06 01:51:11.000000000 +0300 -+++ xmore-1.0.1/xmore.c 2008-01-21 17:16:06.000000000 +0200 -@@ -150,7 +150,9 @@ - static void - printshellDestroyXtProc(Widget w, XtPointer client_data, XtPointer callData) - { -+#ifdef USE_XPRINT - XawPrintDialogClosePrinterConnection(printdialog, False); -+#endif - } - - #ifdef USE_XPRINT -@@ -302,7 +304,12 @@ - #endif - - n = 0; -- XtSetArg(args[n], XtNfromHoriz, printbutton); n++; -+#ifdef USE_XPRINT -+ XtSetArg(args[n], XtNfromHoriz, printbutton); -+#else -+ XtSetArg(args[n], XtNfromHoriz, NULL); -+#endif -+ n++; - XtSetArg(args[n], XtNfromVert, text); n++; - XtSetArg(args[n], XtNlabel, "Quit"); n++; - quitbutton = XtCreateManagedWidget("quit", commandWidgetClass, form, args, n); |