commit:     a0d58ecfc9c018061be9477908f1f32e1be83f1f
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 17 07:55:27 2020 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Fri Jul 17 11:25:44 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0d58ecf

media-libs/ganv: removed obsolete

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/ganv/Manifest                       |  1 -
 media-libs/ganv/files/ganv-1.4.2-no-fdgl.patch | 42 ------------------------
 media-libs/ganv/ganv-1.4.2-r1.ebuild           | 45 --------------------------
 3 files changed, 88 deletions(-)

diff --git a/media-libs/ganv/Manifest b/media-libs/ganv/Manifest
index 4c2028e8ae3..191d098b544 100644
--- a/media-libs/ganv/Manifest
+++ b/media-libs/ganv/Manifest
@@ -1,2 +1 @@
-DIST ganv-1.4.2.tar.bz2 175510 BLAKE2B 
4e6d7e411c78a516ea6603245ae13787607591b061d3856f305bcc4731f27ef46897d032a9b8a1f672776b41351823f89a2ddfeac40b47f584dbf638af79d466
 SHA512 
0609dea81cceb0c560286ad2f132f318c2d583af5163dcea4511155e78a022248dcb7ae535233493bdf906fb036422ebd4368d688123f3e1676c4e0398cbc6c2
 DIST ganv-1.6.0.tar.bz2 377068 BLAKE2B 
f78c4783f0188fd163b087c789d50eb67a54a77d26d261d3557fba46a7bee09fc3326204273ad496d6b2ae262368015c3f186c290f2b85e6d5297eeed7596677
 SHA512 
05900aa63e65646e75f805dfe6ae5901efb19ae31a3f0a6730a713bfaffc47bb93f683879ce2a75093ea09e84a9d3137966b68b4ad307707753dead1df439a09

diff --git a/media-libs/ganv/files/ganv-1.4.2-no-fdgl.patch 
b/media-libs/ganv/files/ganv-1.4.2-no-fdgl.patch
deleted file mode 100644
index 3fb29a7f0b5..00000000000
--- a/media-libs/ganv/files/ganv-1.4.2-no-fdgl.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-diff --git a/src/Canvas.cpp b/src/Canvas.cpp
-index c01021c..1c66a6c 100644
---- a/src/Canvas.cpp
-+++ b/src/Canvas.cpp
-@@ -760,6 +760,18 @@ GanvCanvasImpl::layout_dot(const std::string& filename)
- }
- #endif
- 
-+inline uint64_t
-+get_monotonic_time()
-+{
-+#if GLIB_CHECK_VERSION(2, 28, 0)
-+      return g_get_monotonic_time();
-+#else
-+      GTimeVal time;
-+      g_get_current_time(&time);
-+      return time.tv_sec + time.tv_usec;
-+#endif
-+}
-+
- #ifdef GANV_FDGL
- 
- inline Region
-@@ -788,18 +800,6 @@ apply_force(GanvNode* a, GanvNode* b, const Vector& f)
-       b->impl->force = vec_sub(b->impl->force, f);
- }
- 
--inline uint64_t
--get_monotonic_time()
--{
--#if GLIB_CHECK_VERSION(2, 28, 0)
--      return g_get_monotonic_time();
--#else
--      GTimeVal time;
--      g_get_current_time(&time);
--      return time.tv_sec + time.tv_usec;
--#endif
--}
--
- gboolean
- GanvCanvasImpl::layout_iteration()
- {

diff --git a/media-libs/ganv/ganv-1.4.2-r1.ebuild 
b/media-libs/ganv/ganv-1.4.2-r1.ebuild
deleted file mode 100644
index 1928d7753de..00000000000
--- a/media-libs/ganv/ganv-1.4.2-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-# oes not work with python3
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE='threads(+)'
-inherit eutils flag-o-matic waf-utils python-any-r1
-
-DESCRIPTION="A GTK+ widget for interactive graph-like environments"
-HOMEPAGE="http://drobilla.net/software/ganv/";
-SRC_URI="http://download.drobilla.net/${P}.tar.bz2";
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+fdgl +graphviz introspection nls"
-
-RDEPEND="
-       dev-cpp/glibmm:2
-       dev-cpp/gtkmm:2.4
-       x11-libs/gtk+:2
-       graphviz? ( media-gfx/graphviz[gtk] )
-       introspection? (
-               app-text/yelp-tools
-               dev-libs/gobject-introspection:=[doctool] )
-"
-DEPEND="${RDEPEND}
-       ${PYTHON_DEPS}
-       dev-util/glib-utils
-       nls? ( virtual/libintl )
-"
-
-PATCHES=(
-       "${FILESDIR}"/${P}-no-fdgl.patch
-)
-
-src_configure() {
-       append-cxxflags -std=c++11
-       waf-utils_src_configure \
-               $(use graphviz || echo "--no-graphviz") \
-               $(use fdgl || echo "--no-fdgl") \
-               $(use nls || echo "--no-nls") \
-               $(use introspection && echo "--gir")
-}

Reply via email to