diff options
author | 2018-01-07 20:37:18 +0100 | |
---|---|---|
committer | 2018-01-11 01:37:18 +0100 | |
commit | fae5fb78ff0d96e24fbcbaea5570ef585ce74259 (patch) | |
tree | 31327893af90cb19c437b39d636ceeefcc74796d /media-sound/vdramgw | |
parent | dev-python/scapy-python3: bump (diff) | |
download | gentoo-fae5fb78ff0d96e24fbcbaea5570ef585ce74259.tar.gz gentoo-fae5fb78ff0d96e24fbcbaea5570ef585ce74259.tar.bz2 gentoo-fae5fb78ff0d96e24fbcbaea5570ef585ce74259.zip |
profiles: Drop last-rited Qt3Support/Qt4/kdelibs4 revdeps
Closes: https://bugs.gentoo.org/635468
Closes: https://bugs.gentoo.org/635816
Closes: https://bugs.gentoo.org/639960
Diffstat (limited to 'media-sound/vdramgw')
-rw-r--r-- | media-sound/vdramgw/Manifest | 1 | ||||
-rw-r--r-- | media-sound/vdramgw/files/vdramgw-0.0.2-gcc43.patch | 34 | ||||
-rw-r--r-- | media-sound/vdramgw/files/vdramgw-0.0.2_gcc-4.7.diff | 92 | ||||
-rw-r--r-- | media-sound/vdramgw/metadata.xml | 8 | ||||
-rw-r--r-- | media-sound/vdramgw/vdramgw-0.0.2.ebuild | 43 |
5 files changed, 0 insertions, 178 deletions
diff --git a/media-sound/vdramgw/Manifest b/media-sound/vdramgw/Manifest deleted file mode 100644 index cb61e734f44a..000000000000 --- a/media-sound/vdramgw/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST vdr-amarok-0.0.2.tar.bz2 51816 BLAKE2B bc1918065d7a5731f9f7cef7fe22f7c6d6f94c0d4cf35b234115f15682f4b490c5ec1ad280cfde77d9a0e8ce3e388b61cbf4ae80830e2fb5ca1db8168eb58242 SHA512 217eadf28174c0bafc610068a784bdce0a8657c9a11690f0ac52da265271e601f3e48c8654930c693e6ca869307e68046093f7a88a024574e3cc2804a2f60ca3 diff --git a/media-sound/vdramgw/files/vdramgw-0.0.2-gcc43.patch b/media-sound/vdramgw/files/vdramgw-0.0.2-gcc43.patch deleted file mode 100644 index 8c3ac7452aae..000000000000 --- a/media-sound/vdramgw/files/vdramgw-0.0.2-gcc43.patch +++ /dev/null @@ -1,34 +0,0 @@ -diff -ur amarok-0.0.2.orig/Sockets.cpp amarok-0.0.2/Sockets.cpp ---- amarok-0.0.2.orig/Sockets.cpp 2006-05-15 14:03:23.000000000 +0300 -+++ amarok-0.0.2/Sockets.cpp 2009-07-30 14:02:49.000000000 +0300 -@@ -15,6 +15,7 @@ - - #include "Sockets.h" - -+#include <cstring> - #include <sstream> - - #ifndef WIN32 -diff -ur amarok-0.0.2.orig/vdramgw/Sockets.cpp amarok-0.0.2/vdramgw/Sockets.cpp ---- amarok-0.0.2.orig/vdramgw/Sockets.cpp 2006-05-15 12:52:44.000000000 +0300 -+++ amarok-0.0.2/vdramgw/Sockets.cpp 2009-07-30 14:02:57.000000000 +0300 -@@ -15,6 +15,7 @@ - - #include "Sockets.h" - -+#include <cstring> - #include <sstream> - - #ifndef WIN32 -diff -ur amarok-0.0.2.orig/vdramgw/vdramgw.cpp amarok-0.0.2/vdramgw/vdramgw.cpp ---- amarok-0.0.2.orig/vdramgw/vdramgw.cpp 2006-12-14 01:25:52.000000000 +0200 -+++ amarok-0.0.2/vdramgw/vdramgw.cpp 2009-07-30 14:02:40.000000000 +0300 -@@ -23,7 +23,7 @@ - #include <config.h> - #endif - -- -+#include <cstring> - #include <unistd.h> - #include <getopt.h> - #include <iostream> diff --git a/media-sound/vdramgw/files/vdramgw-0.0.2_gcc-4.7.diff b/media-sound/vdramgw/files/vdramgw-0.0.2_gcc-4.7.diff deleted file mode 100644 index c5182cfd33d6..000000000000 --- a/media-sound/vdramgw/files/vdramgw-0.0.2_gcc-4.7.diff +++ /dev/null @@ -1,92 +0,0 @@ -gcc-4.7 compile fix -https://bugs.gentoo.org/show_bug.cgi?id=424101 - -signed-of-by: Joerg Bornkessel <hd_brummy@gentoo.org> (2012/30/06) -diff -Naur amarok-0.0.2.orig/Sockets.h amarok-0.0.2/Sockets.h ---- amarok-0.0.2.orig/Sockets.h 2012-06-30 17:40:27.000000000 +0200 -+++ amarok-0.0.2/Sockets.h 2012-06-30 17:43:21.000000000 +0200 -@@ -182,8 +182,8 @@ - { - if (this->gptr() == NULL) - { -- setg(s, s + n, s + n); -- setp(s, s + n); -+ this->setg(s, s + n, s + n); -+ this->setp(s, s + n); - inbuf_ = s; - outbuf_ = s; - bufsize_ = n; -@@ -215,9 +215,9 @@ - { - _flush(); - } -- setp(outbuf_, outbuf_ + bufsize_); -+ this->setp(outbuf_, outbuf_ + bufsize_); - if (c != traits::eof()) -- sputc(traits::to_char_type(c)); -+ this->sputc(traits::to_char_type(c)); - return 0; - } - -@@ -225,7 +225,7 @@ - { - // just flush the put area - _flush(); -- setp(outbuf_, outbuf_ + bufsize_); -+ this->setp(outbuf_, outbuf_ + bufsize_); - return 0; - } - -@@ -256,7 +256,7 @@ - return traits::eof(); - - size_t totalbytes = readn + remained_; -- setg(inbuf_, inbuf_, -+ this->setg(inbuf_, inbuf_, - inbuf_ + totalbytes / sizeof(char_type)); - - remained_ = totalbytes % sizeof(char_type); -diff -Naur amarok-0.0.2.orig/vdramgw/Sockets.h amarok-0.0.2/vdramgw/Sockets.h ---- amarok-0.0.2.orig/vdramgw/Sockets.h 2012-06-30 17:40:27.000000000 +0200 -+++ amarok-0.0.2/vdramgw/Sockets.h 2012-06-30 17:41:52.000000000 +0200 -@@ -182,8 +182,8 @@ - { - if (this->gptr() == NULL) - { -- setg(s, s + n, s + n); -- setp(s, s + n); -+ this->setg(s, s + n, s + n); -+ this->setp(s, s + n); - inbuf_ = s; - outbuf_ = s; - bufsize_ = n; -@@ -215,9 +215,9 @@ - { - _flush(); - } -- setp(outbuf_, outbuf_ + bufsize_); -+ this->setp(outbuf_, outbuf_ + bufsize_); - if (c != traits::eof()) -- sputc(traits::to_char_type(c)); -+ this->sputc(traits::to_char_type(c)); - return 0; - } - -@@ -225,7 +225,7 @@ - { - // just flush the put area - _flush(); -- setp(outbuf_, outbuf_ + bufsize_); -+ this->setp(outbuf_, outbuf_ + bufsize_); - return 0; - } - -@@ -256,7 +256,7 @@ - return traits::eof(); - - size_t totalbytes = readn + remained_; -- setg(inbuf_, inbuf_, -+ this->setg(inbuf_, inbuf_, - inbuf_ + totalbytes / sizeof(char_type)); - - remained_ = totalbytes % sizeof(char_type); diff --git a/media-sound/vdramgw/metadata.xml b/media-sound/vdramgw/metadata.xml deleted file mode 100644 index 984a01fab265..000000000000 --- a/media-sound/vdramgw/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>vdr@gentoo.org</email> - <name>Gentoo VDR Project</name> - </maintainer> -</pkgmetadata> diff --git a/media-sound/vdramgw/vdramgw-0.0.2.ebuild b/media-sound/vdramgw/vdramgw-0.0.2.ebuild deleted file mode 100644 index 8dbabdf71fa1..000000000000 --- a/media-sound/vdramgw/vdramgw-0.0.2.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -inherit eutils toolchain-funcs - -MY_P=vdr-amarok-${PV} - -DESCRIPTION="vdr to amarok gateway - allows vdr-amarok to access amarok" -HOMEPAGE="http://irimi.ir.ohost.de/" -SRC_URI="http://irimi.ir.ohost.de/${MY_P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86 ~amd64" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" -RDEPEND="media-sound/amarok" - -S="${WORKDIR}/${MY_P#vdr-}/${PN}" - -src_prepare() { - # Respect CC,CXXFLAGS, LDFLAGS - sed -i -e "/^CXX /s:?=.*:= $(tc-getCXX):" \ - -e "/^CXXFLAGS/s:?=.*:= ${CFLAGS}:" \ - -e "s:\$(CXXFLAGS):& \$(LDFLAGS) :" "${S}"/Makefile - - cd "${WORKDIR}/${MY_P#vdr-}" - epatch "${FILESDIR}"/${P}-gcc43.patch - epatch "${FILESDIR}/${P}_gcc-4.7.diff" -} - -src_install() { - dobin ${PN} - dodoc README - newdoc ../README README.vdr-amarok - - insinto /etc - doins ${PN}.conf -} |