summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2018-04-18 23:01:47 +0300
committerMikle Kolyada <zlogene@gentoo.org>2018-04-18 23:03:16 +0300
commit280189415c9dd1e8a78f576fe5046bb60943a1c6 (patch)
tree50b9bd02fbb5d63b49aa04eba398f58f0a0c76db /media-tv
parentnet-dialup/hcfpcimodem: Remove from tree (diff)
downloadgentoo-280189415c9dd1e8a78f576fe5046bb60943a1c6.tar.gz
gentoo-280189415c9dd1e8a78f576fe5046bb60943a1c6.tar.bz2
gentoo-280189415c9dd1e8a78f576fe5046bb60943a1c6.zip
media-tv/me-tv: remove last rited package
Closes: https://bugs.gentoo.org/629192 Closes: https://bugs.gentoo.org/490344
Diffstat (limited to 'media-tv')
-rw-r--r--media-tv/me-tv/Manifest1
-rw-r--r--media-tv/me-tv/files/me-tv-1.4.0.10-C++11-throw-in-destructors.patch35
-rw-r--r--media-tv/me-tv/files/me-tv-1.4.0.10-gcc47.patch26
-rw-r--r--media-tv/me-tv/me-tv-1.4.0.10.ebuild54
-rw-r--r--media-tv/me-tv/metadata.xml18
5 files changed, 0 insertions, 134 deletions
diff --git a/media-tv/me-tv/Manifest b/media-tv/me-tv/Manifest
deleted file mode 100644
index 9711bc1982ca..000000000000
--- a/media-tv/me-tv/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST me-tv-1.4.0.10.tar.gz 549653 BLAKE2B c5e4922ceaad470203991b6c6bd10ff4caba6772de68d6c5da5c7eea57fc8b8c6ac9d1af8d09f60e2350705aeb897289f7f23ab6391fddbd82891f349dc35477 SHA512 98988a343f900c6b7a276ada47025f9a703a490eb499f3aad9fb7163c73113061dc205a29b454f06e817ef24d44ae58981fd5a19dfb0a48be669394e91bd5ee8
diff --git a/media-tv/me-tv/files/me-tv-1.4.0.10-C++11-throw-in-destructors.patch b/media-tv/me-tv/files/me-tv-1.4.0.10-C++11-throw-in-destructors.patch
deleted file mode 100644
index 322a0d6b8463..000000000000
--- a/media-tv/me-tv/files/me-tv-1.4.0.10-C++11-throw-in-destructors.patch
+++ /dev/null
@@ -1,35 +0,0 @@
---- a/server/data.cc
-+++ b/server/data.cc
-@@ -68,7 +68,7 @@
- }
- }
-
--Statement::~Statement()
-+Statement::~Statement() NOEXCEPT
- {
- if (sqlite3_finalize(statement) != 0)
- {
---- a/server/data.h
-+++ b/server/data.h
-@@ -26,6 +26,12 @@
- #include <linux/dvb/frontend.h>
- #include <glibmm.h>
-
-+#if __cplusplus >= 201103L
-+#define NOEXCEPT noexcept(false)
-+#else
-+#define NOEXCEPT
-+#endif
-+
- typedef std::list<Glib::ustring> StringList;
-
- namespace Data
-@@ -68,7 +74,7 @@
-
- public:
- Statement(Connection& connection, const Glib::ustring& command);
-- ~Statement();
-+ ~Statement() NOEXCEPT;
-
- void reset();
- guint step();
diff --git a/media-tv/me-tv/files/me-tv-1.4.0.10-gcc47.patch b/media-tv/me-tv/files/me-tv-1.4.0.10-gcc47.patch
deleted file mode 100644
index c785e971997e..000000000000
--- a/media-tv/me-tv/files/me-tv-1.4.0.10-gcc47.patch
+++ /dev/null
@@ -1,26 +0,0 @@
- https://bugs.gentoo.org/452108
-
- common/common.cc | 1 +
- server/thread.cc | 1 +
- 2 files changed, 2 insertions(+)
-
---- a/common/common.cc
-+++ b/common/common.cc
-@@ -18,6 +18,7 @@
- * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA
- */
-
-+#include <unistd.h>
- #include "../common/common.h"
- #include "../common/i18n.h"
- #include "../common/exception.h"
---- a/server/thread.cc
-+++ b/server/thread.cc
-@@ -18,6 +18,7 @@
- * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA
- */
-
-+#include <unistd.h>
- #include "thread.h"
- #include "../common/i18n.h"
- #include "../common/exception.h"
diff --git a/media-tv/me-tv/me-tv-1.4.0.10.ebuild b/media-tv/me-tv/me-tv-1.4.0.10.ebuild
deleted file mode 100644
index 89efd2f0c89b..000000000000
--- a/media-tv/me-tv/me-tv-1.4.0.10.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils flag-o-matic versionator autotools gnome2
-
-DESCRIPTION="Me TV is a GTK desktop application for watching digital television"
-HOMEPAGE="http://me-tv.sourceforge.net/"
-SRC_URI="https://launchpad.net/${PN}/$(get_version_component_range 1-2)/$(get_version_component_range 1-3)/+download/${P}.tar.gz"
-RESTRICT="mirror"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="http"
-
-RDEPEND="
- >=dev-cpp/gconfmm-2.6
- dev-cpp/gtkmm:2.4
- dev-cpp/libxmlpp:2.6
- dev-libs/libunique:1
- >=dev-libs/dbus-glib-0.92
- net-libs/gnet:2
- =dev-db/sqlite-3*
- >=media-video/vlc-1.1.8
- media-libs/gstreamer:0.10
- media-plugins/gst-plugins-xvideo:0.10
- media-libs/gst-plugins-base:0.10
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
-"
-
-src_prepare() {
- append-cxxflags -std=c++11
- epatch "${FILESDIR}"/${P}-gcc47.patch
- epatch "${FILESDIR}"/${P}-C++11-throw-in-destructors.patch
- eautoreconf
-}
-
-src_install() {
- gnome2_src_install
- if use http; then
- dodoc -r http/
- fi
-}
-
-pkg_postinst() {
- if use http; then
- elog "The HTTP server port, .. are hardcoded"
- fi
- elog "Please note that Version 1.4 has a new DB so you"
- elog "have to re-import your channels."
-}
diff --git a/media-tv/me-tv/metadata.xml b/media-tv/me-tv/metadata.xml
deleted file mode 100644
index 2b4a8b01044c..000000000000
--- a/media-tv/me-tv/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>lordvan@gentoo.org</email>
- <name>Thomas Raschbacher</name>
- </maintainer>
- <longdescription>Me TV is a GTK desktop application for watching digital television services that use the DVB standard.
-
-Me TV works with DVB-T, DVB-S, DVB-C and ATSC devices that are supported by Linux kernel drivers.</longdescription>
- <use>
- <flag name="http">Installation of Web-frontend</flag>
- </use>
- <upstream>
- <remote-id type="launchpad">me-tv</remote-id>
- <remote-id type="sourceforge">me-tv</remote-id>
- </upstream>
-</pkgmetadata>