summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-02-04 20:37:37 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-02-04 20:37:37 +0000
commita0a8da7bb8b4dc56a4ada40cf68c4ca744edd7ac (patch)
tree792e1c5ea042122ade60ae399d67f8cc02519f64 /sci-visualization
parentRemove old. Drop stable keyword for ppc. See bug #518754. (diff)
downloadgentoo-2-a0a8da7bb8b4dc56a4ada40cf68c4ca744edd7ac.tar.gz
gentoo-2-a0a8da7bb8b4dc56a4ada40cf68c4ca744edd7ac.tar.bz2
gentoo-2-a0a8da7bb8b4dc56a4ada40cf68c4ca744edd7ac.zip
Remove old. Drop stable keyword for ppc and x86. See bug #518164.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'sci-visualization')
-rw-r--r--sci-visualization/quickplot/ChangeLog12
-rw-r--r--sci-visualization/quickplot/files/quickplot-0.8.13-gcc43.patch48
-rw-r--r--sci-visualization/quickplot/files/quickplot-0.8.13-libsigc++-2.2.patch320
-rw-r--r--sci-visualization/quickplot/files/quickplot-0.8.13-linking.patch20
-rw-r--r--sci-visualization/quickplot/files/quickplot-0.8.15-linking.patch11
-rw-r--r--sci-visualization/quickplot/quickplot-0.10.2.ebuild38
-rw-r--r--sci-visualization/quickplot/quickplot-0.10.3.ebuild37
-rw-r--r--sci-visualization/quickplot/quickplot-0.10.4.ebuild44
-rw-r--r--sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild60
9 files changed, 10 insertions, 580 deletions
diff --git a/sci-visualization/quickplot/ChangeLog b/sci-visualization/quickplot/ChangeLog
index 64c7aa2e766a..2f4bd4d36278 100644
--- a/sci-visualization/quickplot/ChangeLog
+++ b/sci-visualization/quickplot/ChangeLog
@@ -1,6 +1,14 @@
# ChangeLog for sci-visualization/quickplot
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v 1.21 2014/10/05 15:46:24 mrueg Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v 1.22 2015/02/04 20:37:37 mrueg Exp $
+
+ 04 Feb 2015; Manuel Rüger <mrueg@gentoo.org>
+ -files/quickplot-0.8.13-gcc43.patch,
+ -files/quickplot-0.8.13-libsigc++-2.2.patch,
+ -files/quickplot-0.8.13-linking.patch, -files/quickplot-0.8.15-linking.patch,
+ -quickplot-0.10.2.ebuild, -quickplot-0.10.3.ebuild, -quickplot-0.10.4.ebuild,
+ -quickplot-0.8.13-r1.ebuild:
+ Remove old. Drop stable keyword for ppc and x86. See bug #518164.
05 Oct 2014; Manuel Rüger <mrueg@gentoo.org> quickplot-0.10.6.ebuild:
Mark stable on amd64. Bug #518164
diff --git a/sci-visualization/quickplot/files/quickplot-0.8.13-gcc43.patch b/sci-visualization/quickplot/files/quickplot-0.8.13-gcc43.patch
deleted file mode 100644
index 14bdc39dc7f0..000000000000
--- a/sci-visualization/quickplot/files/quickplot-0.8.13-gcc43.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-diff -Naur quickplot-0.8.13/App.h quickplot-0.8.13.new/App.h
---- quickplot-0.8.13/App.h 2006-08-04 11:33:36.000000000 -0400
-+++ quickplot-0.8.13.new/App.h 2008-05-06 09:59:36.000000000 -0400
-@@ -41,7 +41,7 @@
-
- public:
-
-- App(int *argv, char ***argv);
-+ App(int *argc, char ***argv);
- virtual ~App(void);
-
-
-diff -Naur quickplot-0.8.13/Graph.cpp quickplot-0.8.13.new/Graph.cpp
---- quickplot-0.8.13/Graph.cpp 2006-08-05 11:45:34.000000000 -0400
-+++ quickplot-0.8.13.new/Graph.cpp 2008-05-06 09:59:36.000000000 -0400
-@@ -42,6 +42,8 @@
- #define ZRO ((value_t) 0.0)
- #define ABSVAL(x) (((x) > 0)? (x) : (-(x)))
-
-+#include <cstring>
-+
-
-
- Graph::Graph(MainWindow *mainWindow_in):
-diff -Naur quickplot-0.8.13/MainWindow.cpp quickplot-0.8.13.new/MainWindow.cpp
---- quickplot-0.8.13/MainWindow.cpp 2006-08-07 14:12:11.000000000 -0400
-+++ quickplot-0.8.13.new/MainWindow.cpp 2008-05-06 09:59:36.000000000 -0400
-@@ -40,6 +40,8 @@
-
- #include "quickplot_icon.xpm"
-
-+#include <cstring>
-+
-
- // from file: help_html.cpp which was generated from help.html.in
- extern const char *help_html;
-diff -Naur quickplot-0.8.13/Plot.cpp quickplot-0.8.13.new/Plot.cpp
---- quickplot-0.8.13/Plot.cpp 2006-08-03 16:56:56.000000000 -0400
-+++ quickplot-0.8.13.new/Plot.cpp 2008-05-06 09:59:36.000000000 -0400
-@@ -31,6 +31,8 @@
- #include "Graph.h"
- #include "Globel.h"
-
-+#include <cstring>
-+
-
- // SPACE is the fraction of blank space on graphing area for the first
- // auto zoom level. The blank space is split evenly between the top
diff --git a/sci-visualization/quickplot/files/quickplot-0.8.13-libsigc++-2.2.patch b/sci-visualization/quickplot/files/quickplot-0.8.13-libsigc++-2.2.patch
deleted file mode 100644
index 8240505f06dd..000000000000
--- a/sci-visualization/quickplot/files/quickplot-0.8.13-libsigc++-2.2.patch
+++ /dev/null
@@ -1,320 +0,0 @@
-diff -Naur quickplot-0.8.13/Graph.cpp quickplot-0.8.13.new/Graph.cpp
---- quickplot-0.8.13/Graph.cpp 2006-08-05 11:45:34.000000000 -0400
-+++ quickplot-0.8.13.new/Graph.cpp 2008-05-06 09:58:18.000000000 -0400
-@@ -1180,31 +1180,31 @@
-
-
-
--SigC::Signal1<void, Graph *> Graph::signal_addedPlot(void)
-+sigc::signal1<void, Graph *> Graph::signal_addedPlot(void)
- {
- return m_signal_addedPlot;
- }
-
--SigC::Signal2<void, Graph *, Plot *> Graph::signal_removedPlot(void)
-+sigc::signal2<void, Graph *, Plot *> Graph::signal_removedPlot(void)
- {
- return m_signal_removedPlot;
- }
-
--SigC::Signal1<void, Graph *> Graph::m_signal_addedPlot;
-+sigc::signal1<void, Graph *> Graph::m_signal_addedPlot;
-
--SigC::Signal2<void, Graph *, Plot *> Graph::m_signal_removedPlot;
-+sigc::signal2<void, Graph *, Plot *> Graph::m_signal_removedPlot;
-
-
-
--SigC::Signal1<void, Graph *> Graph::signal_changedSameScale(void)
-+sigc::signal1<void, Graph *> Graph::signal_changedSameScale(void)
- {
- return m_signal_changedSameScale;
- }
-
--SigC::Signal1<void, Graph *> Graph::m_signal_changedSameScale;
-+sigc::signal1<void, Graph *> Graph::m_signal_changedSameScale;
-
-
--SigC::Signal0<void> Graph::signal_backgroundColorChanged(void)
-+sigc::signal0<void> Graph::signal_backgroundColorChanged(void)
- {
- return m_signal_backgroundColorChanged;
- }
-diff -Naur quickplot-0.8.13/Graph.h quickplot-0.8.13.new/Graph.h
---- quickplot-0.8.13/Graph.h 2006-08-03 16:56:56.000000000 -0400
-+++ quickplot-0.8.13.new/Graph.h 2008-05-06 09:58:18.000000000 -0400
-@@ -68,10 +68,10 @@
- inline bool isShowingGrid() { return (showAutoGrid && isSameScale); }
- /************************************************************/
-
-- static SigC::Signal1<void, Graph *> signal_changedSameScale(void);
-- static SigC::Signal1<void, Graph *> signal_addedPlot(void);
-- static SigC::Signal2<void, Graph *, Plot *> signal_removedPlot(void);
-- SigC::Signal0<void> signal_backgroundColorChanged(void);
-+ static sigc::signal1<void, Graph *> signal_changedSameScale(void);
-+ static sigc::signal1<void, Graph *> signal_addedPlot(void);
-+ static sigc::signal2<void, Graph *, Plot *> signal_removedPlot(void);
-+ sigc::signal0<void> signal_backgroundColorChanged(void);
-
-
- Gdk::Color gridColor, backgroundColor;
-@@ -105,12 +105,12 @@
-
- void setStatusXYValues(gdouble x, gdouble y);
-
-- static SigC::Signal1<void, Graph *> m_signal_changedSameScale;
-+ static sigc::signal1<void, Graph *> m_signal_changedSameScale;
-
-- static SigC::Signal1<void, Graph *> m_signal_addedPlot;
-- static SigC::Signal2<void, Graph *, Plot *> m_signal_removedPlot;
-+ static sigc::signal1<void, Graph *> m_signal_addedPlot;
-+ static sigc::signal2<void, Graph *, Plot *> m_signal_removedPlot;
-
-- SigC::Signal0<void> m_signal_backgroundColorChanged;
-+ sigc::signal0<void> m_signal_backgroundColorChanged;
-
-
- // used by createPlot(Field *x, Field *y)
-diff -Naur quickplot-0.8.13/MainWindow.cpp quickplot-0.8.13.new/MainWindow.cpp
---- quickplot-0.8.13/MainWindow.cpp 2006-08-07 14:12:11.000000000 -0400
-+++ quickplot-0.8.13.new/MainWindow.cpp 2008-05-06 09:58:18.000000000 -0400
-@@ -760,7 +760,7 @@
- gtk_idle_add(copyGraphNotebooks, d);
- }
-
--SigC::Signal1<void, Graph *> GraphsNotebook::signal_tabLabelChanged(void)
-+sigc::signal1<void, Graph *> GraphsNotebook::signal_tabLabelChanged(void)
- {
- return m_signal_tabLabelChanged;
- }
-diff -Naur quickplot-0.8.13/MainWindow.h quickplot-0.8.13.new/MainWindow.h
---- quickplot-0.8.13/MainWindow.h 2006-08-03 16:56:56.000000000 -0400
-+++ quickplot-0.8.13.new/MainWindow.h 2008-05-06 09:58:18.000000000 -0400
-@@ -19,8 +19,8 @@
- // method??? It's not listed.
- void set_show_tabs(bool show_tabs = true);
-
-- SigC::Signal1<void, Graph *> signal_tabLabelChanged(void);
-- SigC::Signal1<void, Graph *> m_signal_tabLabelChanged;
-+ sigc::signal1<void, Graph *> signal_tabLabelChanged(void);
-+ sigc::signal1<void, Graph *> m_signal_tabLabelChanged;
-
- private:
- MainWindow *mainWindow;
-diff -Naur quickplot-0.8.13/Plot.cpp quickplot-0.8.13.new/Plot.cpp
---- quickplot-0.8.13/Plot.cpp 2006-08-03 16:56:56.000000000 -0400
-+++ quickplot-0.8.13.new/Plot.cpp 2008-05-06 09:58:18.000000000 -0400
-@@ -503,7 +503,7 @@
-
- // Emitted when the lineColor, pointColor, lineWidth or pointSize
- // changes.
--SigC::Signal0<void> Plot::signal_changed(void)
-+sigc::signal0<void> Plot::signal_changed(void)
- {
- return m_signal_changed;
- }
-@@ -663,7 +663,7 @@
- m_signal_valueDisplay.emit(xpick, ypick);
- }
-
--SigC::Signal2<void, value_t, value_t> Plot::signal_valueDisplay(void)
-+sigc::signal2<void, value_t, value_t> Plot::signal_valueDisplay(void)
- {
- return m_signal_valueDisplay;
- }
-diff -Naur quickplot-0.8.13/Plot.h quickplot-0.8.13.new/Plot.h
---- quickplot-0.8.13/Plot.h 2006-08-03 16:56:56.000000000 -0400
-+++ quickplot-0.8.13.new/Plot.h 2008-05-06 09:58:18.000000000 -0400
-@@ -101,14 +101,14 @@
-
- // Emitted when the lineColor, pointColor, lineWidth, pointSize,
- // showLines and showPoints.
-- SigC::Signal0<void> signal_changed(void);
-+ sigc::signal0<void> signal_changed(void);
-
-
- int emitDisplayValues(int X);
- void emitInterpolatedDisplayValues(int X);
- void emitDisplayValues(int X, int Y);
-
-- SigC::Signal2<void, value_t, value_t> signal_valueDisplay(void);
-+ sigc::signal2<void, value_t, value_t> signal_valueDisplay(void);
-
- value_t xpick, ypick;
-
-@@ -118,9 +118,9 @@
-
- bool showPoints, showLines;
-
-- SigC::Signal0<void> m_signal_changed;
-+ sigc::signal0<void> m_signal_changed;
-
-- SigC::Signal2<void, value_t, value_t> m_signal_valueDisplay;
-+ sigc::signal2<void, value_t, value_t> m_signal_valueDisplay;
-
- Gdk::Color lineColor, pointColor;
-
-diff -Naur quickplot-0.8.13/PlotConfig.h quickplot-0.8.13.new/PlotConfig.h
---- quickplot-0.8.13/PlotConfig.h 2006-08-03 16:56:56.000000000 -0400
-+++ quickplot-0.8.13.new/PlotConfig.h 2008-05-06 09:58:18.000000000 -0400
-@@ -52,7 +52,7 @@
- ValueSlider pointSizeVS;
- // RadioButton style1, style2 etc ...
-
-- SigC::Connection plotChanged_connection;
-+ sigc::connection plotChanged_connection;
-
- void setValues(void);
-
-diff -Naur quickplot-0.8.13/PlotLister.h quickplot-0.8.13.new/PlotLister.h
---- quickplot-0.8.13/PlotLister.h 2006-08-03 16:56:56.000000000 -0400
-+++ quickplot-0.8.13.new/PlotLister.h 2008-05-06 09:58:18.000000000 -0400
-@@ -24,7 +24,7 @@
- Glib::RefPtr<Gdk::Window> win;
- Glib::RefPtr<Gdk::GC> gc;
-
-- SigC::Connection plotChangeConnection, bgConnection;
-+ sigc::connection plotChangeConnection, bgConnection;
- };
-
-
-@@ -52,14 +52,14 @@
- Table *table;
- MainWindow *mainWindow;
- Plot *plot;
-- SigC::Connection valueDisplay_connection, makePlotConfig_connection;
-+ sigc::connection valueDisplay_connection, makePlotConfig_connection;
-
- void add(Widget &w, int col);
- void makePlotConfig(void);
- //void setLabelSize(Entry &l);
- //void afterRealize(void);
-
-- //SigC::Connection afterRealizeConnection;
-+ //sigc::connection afterRealizeConnection;
- };
-
-
-diff -Naur quickplot-0.8.13/Source.cpp quickplot-0.8.13.new/Source.cpp
---- quickplot-0.8.13/Source.cpp 2006-08-03 16:56:56.000000000 -0400
-+++ quickplot-0.8.13.new/Source.cpp 2008-05-06 09:58:18.000000000 -0400
-@@ -207,18 +207,18 @@
- }
-
-
--SigC::Signal1<void, Source *> Source::signal_addedSource()
-+sigc::signal1<void, Source *> Source::signal_addedSource()
- {
- return m_signal_addedSource;
- }
-
--SigC::Signal1<void, Source *> Source::m_signal_addedSource;
-+sigc::signal1<void, Source *> Source::m_signal_addedSource;
-
-
--SigC::Signal1<void, Source *> Source::signal_removedSource()
-+sigc::signal1<void, Source *> Source::signal_removedSource()
- {
- return m_signal_removedSource;
- }
-
--SigC::Signal1<void, Source *> Source::m_signal_removedSource;
-+sigc::signal1<void, Source *> Source::m_signal_removedSource;
-
-diff -Naur quickplot-0.8.13/Source.h quickplot-0.8.13.new/Source.h
---- quickplot-0.8.13/Source.h 2006-08-03 16:56:56.000000000 -0400
-+++ quickplot-0.8.13.new/Source.h 2008-05-06 09:58:18.000000000 -0400
-@@ -50,8 +50,8 @@
- inline const enum TYPE getType(void){ return type; }
- inline const char *getTypeString(void){ return TYPE_STRING[type]; }
-
-- static SigC::Signal1<void, Source *> signal_addedSource();
-- static SigC::Signal1<void, Source *> signal_removedSource();
-+ static sigc::signal1<void, Source *> signal_addedSource();
-+ static sigc::signal1<void, Source *> signal_removedSource();
-
- // Delete this object later.
- void deleteLater(void);
-@@ -61,8 +61,8 @@
-
- protected:
-
-- static SigC::Signal1<void, Source *> m_signal_addedSource;
-- static SigC::Signal1<void, Source *> m_signal_removedSource;
-+ static sigc::signal1<void, Source *> m_signal_addedSource;
-+ static sigc::signal1<void, Source *> m_signal_removedSource;
-
- inline void setType(enum TYPE t) { type = t; }
- char *fileName, *baseFileName;
-diff -Naur quickplot-0.8.13/ValueSlider.cpp quickplot-0.8.13.new/ValueSlider.cpp
---- quickplot-0.8.13/ValueSlider.cpp 2006-08-03 16:56:56.000000000 -0400
-+++ quickplot-0.8.13.new/ValueSlider.cpp 2008-05-06 09:58:18.000000000 -0400
-@@ -175,7 +175,7 @@
- }
- }
-
--SigC::Signal0<void> ValueSlider::signal_valueChanged()
-+sigc::signal0<void> ValueSlider::signal_valueChanged()
- {
- return m_signal_valueChanged;
- }
-@@ -329,7 +329,7 @@
- }
- }
-
--SigC::Signal0<void> DoubleValueSlider::signal_valueChanged()
-+sigc::signal0<void> DoubleValueSlider::signal_valueChanged()
- {
- return m_signal_valueChanged;
- }
-@@ -479,7 +479,7 @@
- return (int) pow(10.0, value);
- }
-
--SigC::Signal0<void> LogValueSlider::signal_valueChanged()
-+sigc::signal0<void> LogValueSlider::signal_valueChanged()
- {
- return m_signal_valueChanged;
- }
-diff -Naur quickplot-0.8.13/ValueSlider.h quickplot-0.8.13.new/ValueSlider.h
---- quickplot-0.8.13/ValueSlider.h 2006-08-03 16:56:56.000000000 -0400
-+++ quickplot-0.8.13.new/ValueSlider.h 2008-05-06 09:58:18.000000000 -0400
-@@ -20,10 +20,10 @@
- double maxmax;
-
- public:
-- SigC::Signal0<void> signal_valueChanged();
-+ sigc::signal0<void> signal_valueChanged();
-
- private:
-- SigC::Signal0<void> m_signal_valueChanged;
-+ sigc::signal0<void> m_signal_valueChanged;
-
- bool setScaleToEntry(void);
-
-@@ -53,10 +53,10 @@
- double value, maxmax;
-
- public:
-- SigC::Signal0<void> signal_valueChanged();
-+ sigc::signal0<void> signal_valueChanged();
-
- private:
-- SigC::Signal0<void> m_signal_valueChanged;
-+ sigc::signal0<void> m_signal_valueChanged;
-
- bool setScaleToEntry(void);
-
-@@ -88,10 +88,10 @@
- double value;
-
- public:
-- SigC::Signal0<void> signal_valueChanged();
-+ sigc::signal0<void> signal_valueChanged();
-
- private:
-- SigC::Signal0<void> m_signal_valueChanged;
-+ sigc::signal0<void> m_signal_valueChanged;
-
- bool setScaleToEntry(void);
-
diff --git a/sci-visualization/quickplot/files/quickplot-0.8.13-linking.patch b/sci-visualization/quickplot/files/quickplot-0.8.13-linking.patch
deleted file mode 100644
index 578c4b8be99b..000000000000
--- a/sci-visualization/quickplot/files/quickplot-0.8.13-linking.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- Makefile.in.orig 2008-08-29 11:26:41.000000000 +0100
-+++ Makefile.in 2008-08-29 11:32:32.000000000 +0100
-@@ -173,7 +173,7 @@
-
- quickplot_CXXFLAGS = -Wall $(GTKMM_CXXFLAGS) $(SNDFILE_CFLAGS) -DHTMLDIR=\"$(htmldir)\"
-
--quickplot_LDFLAGS = -Wall $(GTKMM_LIBS) $(SNDFILE_LIBS)
-+quickplot_LDFLAGS = -Wall
- # -lefence
-
- # require automake 1.7
-@@ -252,7 +252,7 @@
- quickplot-main.$(OBJEXT) quickplot-parseGeometry.$(OBJEXT) \
- quickplot-usage.$(OBJEXT)
- quickplot_OBJECTS = $(am_quickplot_OBJECTS)
--quickplot_LDADD = $(LDADD)
-+quickplot_LDADD = $(GTKMM_LIBS) $(SNDFILE_LIBS)
- quickplot_DEPENDENCIES =
-
- DEFAULT_INCLUDES = -I. -I$(srcdir) -I.
diff --git a/sci-visualization/quickplot/files/quickplot-0.8.15-linking.patch b/sci-visualization/quickplot/files/quickplot-0.8.15-linking.patch
deleted file mode 100644
index 2e79005486a3..000000000000
--- a/sci-visualization/quickplot/files/quickplot-0.8.15-linking.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- quickplot-0.8.15.orig/Makefile.am 2010-06-23 17:34:39.000000000 +0100
-+++ quickplot-0.8.15/Makefile.am 2010-06-23 17:35:36.000000000 +0100
-@@ -53,7 +53,7 @@
- quickplot_CXXFLAGS = -Wall $(GTKMM_CXXFLAGS) $(SNDFILE_CFLAGS) -DHTMLDIR=\"$(htmldir)\"
-
-
--quickplot_LDFLAGS = -Wall $(GTKMM_LIBS) $(SNDFILE_LIBS)
-+quickplot_LDADD = $(GTKMM_LIBS) $(SNDFILE_LIBS)
- # -lefence
-
- # require automake 1.7
diff --git a/sci-visualization/quickplot/quickplot-0.10.2.ebuild b/sci-visualization/quickplot/quickplot-0.10.2.ebuild
deleted file mode 100644
index 43d1fd1dedd6..000000000000
--- a/sci-visualization/quickplot/quickplot-0.10.2.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/quickplot-0.10.2.ebuild,v 1.2 2012/05/04 08:07:00 jdhore Exp $
-
-EAPI=4
-
-inherit autotools-utils eutils
-
-DESCRIPTION="A fast interactive 2D plotter"
-HOMEPAGE="http://quickplot.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-SLOT="0"
-LICENSE="GPL-3"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="static-libs"
-
-RDEPEND="
- media-libs/libsndfile
- >=sys-libs/readline-0.6.2
- x11-libs/gtk+:3"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_configure() {
- local myeconfargs=(
- --htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
- )
- autotools-utils_src_configure
-}
-
-src_install () {
- autotools-utils_src_install
-
- make_desktop_entry 'quickplot --no-pipe' Quickplot quickplot Graphics
- mv "${D}"/usr/share/applications/quickplot*.desktop \
- "${D}"/usr/share/applications/quickplot.desktop || die
-}
diff --git a/sci-visualization/quickplot/quickplot-0.10.3.ebuild b/sci-visualization/quickplot/quickplot-0.10.3.ebuild
deleted file mode 100644
index 25f70655c96e..000000000000
--- a/sci-visualization/quickplot/quickplot-0.10.3.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/quickplot-0.10.3.ebuild,v 1.3 2012/08/07 03:46:47 bicatali Exp $
-
-EAPI=4
-
-inherit autotools-utils eutils
-
-DESCRIPTION="A fast interactive 2D plotter"
-HOMEPAGE="http://quickplot.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-
-SLOT="0"
-LICENSE="GPL-3"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE="static-libs"
-
-RDEPEND="
- media-libs/libsndfile
- >=sys-libs/readline-0.6.2
- x11-libs/gtk+:3"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_configure() {
- local myeconfargs=(
- --htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
- )
- autotools-utils_src_configure
-}
-
-src_install () {
- autotools-utils_src_install
- make_desktop_entry 'quickplot --no-pipe' Quickplot quickplot Graphics
- mv "${ED}"/usr/share/applications/quickplot*.desktop \
- "${ED}"/usr/share/applications/quickplot.desktop || die
-}
diff --git a/sci-visualization/quickplot/quickplot-0.10.4.ebuild b/sci-visualization/quickplot/quickplot-0.10.4.ebuild
deleted file mode 100644
index 2ba9273248a1..000000000000
--- a/sci-visualization/quickplot/quickplot-0.10.4.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/quickplot-0.10.4.ebuild,v 1.1 2013/03/12 08:13:51 jlec Exp $
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=true
-
-inherit autotools-utils eutils
-
-DESCRIPTION="A fast interactive 2D plotter"
-HOMEPAGE="http://quickplot.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-
-SLOT="0"
-LICENSE="GPL-3"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE="static-libs"
-
-RDEPEND="
- media-libs/libsndfile
- >=sys-libs/readline-0.6.2
- x11-libs/gtk+:3"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_prepare() {
- sed '/libquickplot_la_LIBADD/s:$: -lm:g' -i Makefile.am || die
- autotools-utils_src_prepare
-}
-
-src_configure() {
- local myeconfargs=(
- --htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
- )
- autotools-utils_src_configure
-}
-
-src_install () {
- autotools-utils_src_install
- make_desktop_entry 'quickplot --no-pipe' Quickplot quickplot Graphics
- mv "${ED}"/usr/share/applications/quickplot*.desktop \
- "${ED}"/usr/share/applications/quickplot.desktop || die
-}
diff --git a/sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild b/sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild
deleted file mode 100644
index 6056ec39b8cd..000000000000
--- a/sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild,v 1.8 2012/05/04 08:07:00 jdhore Exp $
-
-EAPI=1
-
-inherit eutils
-
-DESCRIPTION="A fast interactive 2D plotter"
-HOMEPAGE="http://quickplot.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ppc x86"
-IUSE="sndfile"
-
-RDEPEND="
- dev-cpp/gtkmm:2.4
- sndfile? ( media-libs/libsndfile )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}"/${P}-libsigc++-2.2.patch
- epatch "${FILESDIR}"/${P}-gcc43.patch
- epatch "${FILESDIR}"/${P}-linking.patch
-
- # Some files have been moved around to more appropriate locations
- sed -i \
- -e 's|quickplot_icon.png|/usr/share/pixmaps/quickplot.png|' \
- -e 's|href="ChangeLog"|href="../ChangeLog.gz"|' \
- index.html.in
- sed -i -e 's|href="COPYING"|href="/usr/portage/licenses/GPL-2"|' \
- about.html.in
-}
-
-src_compile() {
- econf $(use_with sndfile libsndfile)
- emake htmldir=/usr/share/doc/${PF}/html || die "emake step failed."
-}
-
-src_install () {
- emake \
- DESTDIR="${D}" \
- htmldir=/usr/share/doc/${PF}/html \
- install || die "make install step failed."
- dodoc AUTHORS ChangeLog README README.devel TODO
- # Remove COPYING as it is specified in LICENCE. Move other stuff.
- cd "${D}"/usr/share/doc/${PF}/html
- rm COPYING quickplot_icon.png ChangeLog
- mv "${D}"/usr/share/pixmaps/quickplot_icon.png \
- "${D}"/usr/share/pixmaps/quickplot.png
- make_desktop_entry 'quickplot --no-pipe' Quickplot quickplot Graphics
- mv "${D}"/usr/share/applications/quickplot\ --no-pipe.desktop \
- "${D}"/usr/share/applications/quickplot.desktop
-}