summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-plugins')
-rw-r--r--media-plugins/vdr-satip/Manifest2
-rw-r--r--media-plugins/vdr-satip/files/vdr-satip-2.2.3_c++11.patch28
-rw-r--r--media-plugins/vdr-satip/files/vdr-satip-2.2.3_missinginclude.patch15
-rw-r--r--media-plugins/vdr-satip/vdr-satip-2.2.3-r2.ebuild35
-rw-r--r--media-plugins/vdr-satip/vdr-satip-2.4.0_p20191027.ebuild36
5 files changed, 0 insertions, 116 deletions
diff --git a/media-plugins/vdr-satip/Manifest b/media-plugins/vdr-satip/Manifest
index 1df3d7a63995..5251b42f091d 100644
--- a/media-plugins/vdr-satip/Manifest
+++ b/media-plugins/vdr-satip/Manifest
@@ -1,4 +1,2 @@
DIST vdr-plugin-satip-43b60b1566878104240cbae5b1e322bbacd380e1.tar.gz 74697 BLAKE2B a1e763e1837cf00718469333304a858cec9802bc65ca0e607664ce0bc0594d038586b10fdbe822cb62e8d9d68441bc39b9c4356ce88e328cc08e41a3e7e2c213 SHA512 6447d424d119e738b3dc747b9ec27c24ed15143bee176cca4cbd09d43a9c5cfd03bb1d39fa2c3b4409af583e25489872d5350d32570d0790e2327759a6181b2e
-DIST vdr-satip-2.2.3.tgz 62722 BLAKE2B 408fe520b4210fa24667d4244560d5132260ce08067d482a50b12446c42c0c34fd922b3429d00c4e3550a7b1dc1d21bfac534cae9de478594751b9cf0f558d52 SHA512 451606b52831c009aaec894f0547c59a9447279d7f96a4b2291614eab09a3539849abcb6974b7c2c4b34e7b43a2f9c782ab1ea6bfd4e35f9747349065fb6a5e7
DIST vdr-satip-2.2.5.tgz 74669 BLAKE2B e586297f0f0c1ca776d4c9f83b46da7f7afe82b80ac7e79ec2da7107c793f5c8a5092590ad23030a435e2d034b084373b9b069bac6ef81822723d33ff6c7fab2 SHA512 3f8ab1d9e84843e71bc6fc8f712d178fa3d304d0959ec977de1b11829e27b575feb78735c6770b15d4dfb8f4fce933aed7df07a6d9ba0b20e937aacd3c643a21
-DIST vdr-satip-2.4.0_p20191027.tar.gz 74205 BLAKE2B 06d847bdec0aa996b5a12df8effcbed1f6cb508664aceda67f6ca415b84646e2f116e329068abd735403c145971146335a004d43e38ede133db03e37ba5b3117 SHA512 087b767583393608995141bf15f02793fb48ee448fe5c3becad34e2e84a4dc8391feb00c1b68fd37377837bd4468f766a8a389e720be375bd2cb6847277e887c
diff --git a/media-plugins/vdr-satip/files/vdr-satip-2.2.3_c++11.patch b/media-plugins/vdr-satip/files/vdr-satip-2.2.3_c++11.patch
deleted file mode 100644
index 102e8e970b97..000000000000
--- a/media-plugins/vdr-satip/files/vdr-satip-2.2.3_c++11.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-common.h still use function typeof,
-this was never defined part of c++ and is
-not supported in c++11 anymore
-so we revert back to gnu++03 as it is not fixed by upstream
-Signed-of-by: Joerg Bornkessel <hd_brummy@gentoo.org> (2016/aug/01)
-diff -Naur satip-2.2.3.orig/Makefile satip-2.2.3/Makefile
---- satip-2.2.3.orig/Makefile 2016-08-03 23:17:36.769080128 +0200
-+++ satip-2.2.3/Makefile 2016-08-03 23:18:36.399080128 +0200
-@@ -32,6 +32,7 @@
-
- export CFLAGS = $(call PKGCFG,cflags)
- export CXXFLAGS = $(call PKGCFG,cxxflags)
-+export CXXFLAGS += -std=gnu++03
- STRIP = true
-
- ### The version number of VDR's plugin API:
-diff -Naur satip-2.2.3.orig/common.h satip-2.2.3/common.h
---- satip-2.2.3.orig/common.h 2016-08-07 02:54:27.290440336 +0200
-+++ satip-2.2.3/common.h 2016-08-07 02:54:53.193773669 +0200
-@@ -52,7 +52,7 @@
- do { \
- if (exp) { \
- char tmp[64]; \
-- esyslog("[%s,%d]: "errstr": %s", __FILE__, __LINE__, \
-+ esyslog("[%s,%d]: " errstr ": %s", __FILE__, __LINE__, \
- strerror_r(errno, tmp, sizeof(tmp))); \
- func; \
- ret; \
diff --git a/media-plugins/vdr-satip/files/vdr-satip-2.2.3_missinginclude.patch b/media-plugins/vdr-satip/files/vdr-satip-2.2.3_missinginclude.patch
deleted file mode 100644
index 4d0b32329e23..000000000000
--- a/media-plugins/vdr-satip/files/vdr-satip-2.2.3_missinginclude.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-fix: isspace was not declared in this scope
-https://github.com/rofafor/vdr-plugin-satip/commit/c10372bb4f1
-
-Signed-of by: Joerg Bornkessel <hd_brummy@gentoo.org> (03/Sep/2018)
-diff -Naur satip-2.2.3.orig/satip.c satip-2.2.3/satip.c
---- satip-2.2.3.orig/satip.c 2018-09-03 13:00:20.000000000 +0200
-+++ satip-2.2.3/satip.c 2018-09-03 13:00:54.000000000 +0200
-@@ -5,6 +5,7 @@
- *
- */
-
-+#include <ctype.h>
- #include <getopt.h>
- #include <vdr/plugin.h>
- #include "common.h"
diff --git a/media-plugins/vdr-satip/vdr-satip-2.2.3-r2.ebuild b/media-plugins/vdr-satip/vdr-satip-2.2.3-r2.ebuild
deleted file mode 100644
index 805adb773dd9..000000000000
--- a/media-plugins/vdr-satip/vdr-satip-2.2.3-r2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit vdr-plugin-2
-
-DESCRIPTION="VDR Plugin: integrates SAT>IP network devices seamlessly into VDR"
-HOMEPAGE="http://www.saunalahti.fi/~rahrenbe/vdr/satip/"
-SRC_URI="http://www.saunalahti.fi/~rahrenbe/vdr/satip/files/${P}.tgz"
-
-KEYWORDS="~amd64 ~arm ~x86"
-SLOT="0"
-LICENSE="GPL-2"
-IUSE=""
-
-DEPEND=">=media-video/vdr-2.2.0
- >=net-misc/curl-7.36
- || ( dev-libs/tinyxml
- dev-libs/pugixml )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- vdr-plugin-2_src_prepare
-
- # c++11 compile fix
- eapply "${FILESDIR}/${P}_c++11.patch"
-
- #gcc 7 compile fix
- eapply "${FILESDIR}/${P}_missinginclude.patch"
-
- if has_version "dev-libs/tinyxml" ; then
- sed -e "s:#SATIP_USE_TINYXML:SATIP_USE_TINYXML:" -i Makefile
- fi
-}
diff --git a/media-plugins/vdr-satip/vdr-satip-2.4.0_p20191027.ebuild b/media-plugins/vdr-satip/vdr-satip-2.4.0_p20191027.ebuild
deleted file mode 100644
index cd4da2275d45..000000000000
--- a/media-plugins/vdr-satip/vdr-satip-2.4.0_p20191027.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit vdr-plugin-2
-
-GIT_COMMIT="19e3057f34d9c097c8c6bad30188b14d80b7a242"
-MY_P="vdr-plugin-satip-${GIT_COMMIT}"
-
-DESCRIPTION="VDR Plugin: integrates SAT>IP network devices seamlessly into VDR"
-HOMEPAGE="http://www.saunalahti.fi/~rahrenbe/vdr/satip/"
-SRC_URI="https://github.com/rofafor/vdr-plugin-satip/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-
-DEPEND=">=media-video/vdr-2.4.0
- >=net-misc/curl-7.36
- || ( dev-libs/pugixml
- dev-libs/tinyxml )"
-RDEPEND="${DEPEND}"
-
-QA_FLAGS_IGNORED="
- usr/lib/vdr/plugins/libvdr-satip.*
- usr/lib64/vdr/plugins/libvdr-satip.*"
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- vdr-plugin-2_src_prepare
-
- if has_version "dev-libs/tinyxml" ; then
- sed -e "s:#SATIP_USE_TINYXML:SATIP_USE_TINYXML:" -i Makefile || die "sed failed"
- fi
-}