summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiroslav Šulc <fordfrog@gentoo.org>2020-07-17 09:55:27 +0200
committerMiroslav Šulc <fordfrog@gentoo.org>2020-07-17 13:25:44 +0200
commita0d58ecfc9c018061be9477908f1f32e1be83f1f (patch)
treeb16eea262ffa64d19b19278a83f8d58a6d20c8b1
parentmedia-sound/patchage: removed obsolete (diff)
downloadgentoo-a0d58ecfc9c018061be9477908f1f32e1be83f1f.tar.gz
gentoo-a0d58ecfc9c018061be9477908f1f32e1be83f1f.tar.bz2
gentoo-a0d58ecfc9c018061be9477908f1f32e1be83f1f.zip
media-libs/ganv: removed obsolete
Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
-rw-r--r--media-libs/ganv/Manifest1
-rw-r--r--media-libs/ganv/files/ganv-1.4.2-no-fdgl.patch42
-rw-r--r--media-libs/ganv/ganv-1.4.2-r1.ebuild45
3 files changed, 0 insertions, 88 deletions
diff --git a/media-libs/ganv/Manifest b/media-libs/ganv/Manifest
index 4c2028e8ae3f..191d098b544c 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 3fb29a7f0b54..000000000000
--- 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 1928d7753de0..000000000000
--- 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")
-}