summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2021-01-24 12:13:28 +0100
committerUlrich Müller <ulm@gentoo.org>2021-01-24 18:28:53 +0100
commit15cfbdc1ba0a05a7a32ecbcfe8d7bfb31d02933f (patch)
tree2b88c907f5742ddd6104c636c9a2e7a85207da9f /sci-visualization/gnuplot/files/gnuplot-5.2.8-caca.patch
parentdev-cpp/catch: Version bump to 2.13.4 (diff)
downloadgentoo-15cfbdc1ba0a05a7a32ecbcfe8d7bfb31d02933f.tar.gz
gentoo-15cfbdc1ba0a05a7a32ecbcfe8d7bfb31d02933f.tar.bz2
gentoo-15cfbdc1ba0a05a7a32ecbcfe8d7bfb31d02933f.zip
sci-visualization/gnuplot: Remove old
Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'sci-visualization/gnuplot/files/gnuplot-5.2.8-caca.patch')
-rw-r--r--sci-visualization/gnuplot/files/gnuplot-5.2.8-caca.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/sci-visualization/gnuplot/files/gnuplot-5.2.8-caca.patch b/sci-visualization/gnuplot/files/gnuplot-5.2.8-caca.patch
deleted file mode 100644
index 2ce464f04499..000000000000
--- a/sci-visualization/gnuplot/files/gnuplot-5.2.8-caca.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-Patch backported from branch-5-4-stable.
-https://bugs.gentoo.org/690014
-
---- gnuplot-5.2.8-orig/term/caca.trm
-+++ gnuplot-5.2.8/term/caca.trm
-@@ -1909,8 +1909,11 @@
- CACA_result loop = CACA_loop;
- caca_event_t ev;
- const int event_mask =
-- CACA_EVENT_KEY_PRESS | CACA_EVENT_RESIZE | CACA_EVENT_QUIT |
-- CACA_EVENT_MOUSE_MOTION | CACA_EVENT_MOUSE_PRESS | CACA_EVENT_MOUSE_RELEASE;
-+ CACA_EVENT_KEY_PRESS | CACA_EVENT_RESIZE | CACA_EVENT_QUIT
-+#ifdef USE_MOUSE
-+ | CACA_EVENT_MOUSE_MOTION | CACA_EVENT_MOUSE_PRESS | CACA_EVENT_MOUSE_RELEASE
-+#endif
-+ ;
- static int mx = 0, my = 0; /* current mouse position */
- static unsigned long last_event_time = 0;
-
-@@ -2577,11 +2580,13 @@
- }
- }
-
-+#ifdef USE_MOUSE
- if (changed) {
- /* Replot only if something changed. */
- CACA_zoom_or_replot = TRUE;
- process_event(GE_replot, 0, 0, 0, 0, 0);
- }
-+#endif
- }
-
-