summaryrefslogtreecommitdiff
path: root/media-libs/phonon-qt7
diff options
context:
space:
mode:
Diffstat (limited to 'media-libs/phonon-qt7')
-rw-r--r--media-libs/phonon-qt7/Manifest6
-rw-r--r--media-libs/phonon-qt7/files/phonon-qt7-0_pre20110424-QWidget-cast-dynamic.patch28
-rw-r--r--media-libs/phonon-qt7/files/phonon-qt7-0_pre20110424-darwin11.patch29
-rw-r--r--media-libs/phonon-qt7/files/phonon-qt7-noshow.patch17
-rw-r--r--media-libs/phonon-qt7/metadata.xml12
-rw-r--r--media-libs/phonon-qt7/phonon-qt7-0_pre20110424.ebuild40
6 files changed, 0 insertions, 132 deletions
diff --git a/media-libs/phonon-qt7/Manifest b/media-libs/phonon-qt7/Manifest
deleted file mode 100644
index e0109c369530..000000000000
--- a/media-libs/phonon-qt7/Manifest
+++ /dev/null
@@ -1,6 +0,0 @@
-AUX phonon-qt7-0_pre20110424-QWidget-cast-dynamic.patch 941 BLAKE2B 7ef8a33b7901326e2ebe702ec86b0f1c2ebb6356e346d51821c6016c948837a49f868e77d20d92dda922c3ab729f246aeac4f371ae73c14057fe3ef2d0fe3a9b SHA512 fd8ed1410d5b74eb24ae1c78265d26684234b25578d1e2155619de75a587eef83a37c85d86de04b5437fddd6eba40358f307a70dedeff3b0ca693132c23e751e
-AUX phonon-qt7-0_pre20110424-darwin11.patch 1043 BLAKE2B f2777f8564ab86ad945fa2a1c16ba13d208c8f59c1d7cbf36596a1c1ddb387243f1dafb1a4f1dca92b358b98f339497177d3c8ed34a6e186a15b64d59997ffd3 SHA512 1d713b42ef8fa80d8ac40497287731b3f42cd7b6cf9a67e46ee579a69ce53243d89082b2e52742c49127ddd5df1991735a761d57bc1cfee84e3963b31c0d8232
-AUX phonon-qt7-noshow.patch 493 BLAKE2B eec9f9d4b642496b1d39f26e8b265f74d5349e357bb1f0ceb3bde15bcdf0c7d4d039a0d56c63e8d3340035b2bf37a899c5ef31da7cfe7c210a6cb3ddf63896fd SHA512 bf407a587ed5a280f5b0a0ce7035aaa9c453297fb66d1ee8b4a40c7be16419b7fc3f1f69ea9e4c7b5fa66ba3c683a165d2c70f85e7b941c7638cc75cdd8de5ed
-DIST phonon-qt7-0_pre20110424.tar.bz2 54610 BLAKE2B 1323e2ca8f34a4b278435df17a2e22c8f4b8ef38abc3dc9fdcc03733cbefcec66d7892a95adf63189317d4f3117a550b084a5573d6cc00ed9088af51beac7508 SHA512 9e694c2effdf2b044118e4afb101e098d479bfc4c97f8f8069dcadbaa44f4dc6371ad15c1487bb1786e1096cbc93b660c0edde87e61f6a9483fce5a7587df2b9
-EBUILD phonon-qt7-0_pre20110424.ebuild 977 BLAKE2B 862dc47c1373b1fe879869bdc8ae38da46cc250fe9905d38786abbc12c677b9318bad6bc4cae4a54e57be32565ee3f72fc13847962f07e8d02f286a13eebbe98 SHA512 a40483e369a27c782d4a9fb88d43bd71782c2d278635fcb05bfe064777a90d7f96b226aad5ec7fc9143482a2501595d73f61933fac14ec1eb836ec5f68b69c48
-MISC metadata.xml 357 BLAKE2B e7a00afa7a9ca1b7b935a0e5c9142fae12f4c8b65adea98bd7c6db4ce633d4f0585be573617d63dcf0d0f366a64dce3cc0085a5841d38635d47744280f09588f SHA512 e7b6fac10e6f156201caa5ccea95e1f8ab99db2c99127a12e710b50bd5cded5ae716ea2f153aa6325bff3f97b02ac22af40a270227f092d6ad064803bc93e3b7
diff --git a/media-libs/phonon-qt7/files/phonon-qt7-0_pre20110424-QWidget-cast-dynamic.patch b/media-libs/phonon-qt7/files/phonon-qt7-0_pre20110424-QWidget-cast-dynamic.patch
deleted file mode 100644
index ae222027b892..000000000000
--- a/media-libs/phonon-qt7/files/phonon-qt7-0_pre20110424-QWidget-cast-dynamic.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-Revert commit:
-
-commit b22b86f6940d2605e78398eca4ae05c3ea44a92c
-Author: Ritt Konstantin <ritt.ks@gmail.com>
-Date: Thu Jun 10 07:38:14 2010 +0400
-
- fix build with -fno-rtti
-
- m_renderDrawWidget object inherits QWidget and can be safely static_cast-ed
-
-as it yields in:
-
-error: invalid static_cast from type ‘Phonon::QT7::IVideoRenderDrawWidget*’ to type ‘QWidget*’
-
-
-diff --git a/qt7/videowidget.mm b/qt7/videowidget.mm
-index 736dcdf..e471140 100644
---- a/qt7/videowidget.mm
-+++ b/qt7/videowidget.mm
-@@ -578,7 +578,7 @@ public:
- PhononAutoReleasePool pool;
- updateDrawFrameRect();
- if (m_renderDrawWidget)
-- static_cast<QWidget *>(m_renderDrawWidget)->resize(size());
-+ dynamic_cast<QWidget *>(m_renderDrawWidget)->resize(size());
- break; }
- case QEvent::Paint:{
- PhononAutoReleasePool pool;
diff --git a/media-libs/phonon-qt7/files/phonon-qt7-0_pre20110424-darwin11.patch b/media-libs/phonon-qt7/files/phonon-qt7-0_pre20110424-darwin11.patch
deleted file mode 100644
index 6d1a5626a207..000000000000
--- a/media-libs/phonon-qt7/files/phonon-qt7-0_pre20110424-darwin11.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-disable AUGraphAddNode, it needs an AudioComponent iso Component
-need a definition for gnuOrtho2D
-
---- phonon-qt7/qt7/audionode.mm
-+++ phonon-qt7/qt7/audionode.mm
-@@ -69,9 +69,9 @@
-
- OSStatus err = noErr;
- #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
-- if (QSysInfo::MacintoshVersion >= QSysInfo::MV_10_5)
-- err = AUGraphAddNode(m_audioGraph->audioGraphRef(), &description, &m_auNode);
-- else
-+// if (QSysInfo::MacintoshVersion >= QSysInfo::MV_10_5)
-+// err = AUGraphAddNode(m_audioGraph->audioGraphRef(), &description, &m_auNode);
-+// else
- #endif
- err = AUGraphNewNode(m_audioGraph->audioGraphRef(), &description, 0, 0, &m_auNode);
-
---- phonon-qt7/qt7/videowidget.mm
-+++ phonon-qt7/qt7/videowidget.mm
-@@ -35,6 +35,8 @@
- #import <AppKit/NSImage.h>
- #import <QTKit/QTMovieView.h>
-
-+#import <OpenGL/glu.h>
-+
- /////////////////////////////////////////////////////////////////////////////////////////
-
- #ifdef QT_MAC_USE_COCOA // Rendering to a QTMovieView can only be done in Cocoa
diff --git a/media-libs/phonon-qt7/files/phonon-qt7-noshow.patch b/media-libs/phonon-qt7/files/phonon-qt7-noshow.patch
deleted file mode 100644
index e05c2c4d9957..000000000000
--- a/media-libs/phonon-qt7/files/phonon-qt7-noshow.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff -ruN phonon-qt7.orig/CMakeLists.txt phonon-qt7/CMakeLists.txt
---- phonon-qt7.orig/CMakeLists.txt 2011-04-24 20:22:59.000000000 +0200
-+++ phonon-qt7/CMakeLists.txt 2011-04-24 20:42:15.000000000 +0200
-@@ -2,6 +2,8 @@
-
- cmake_minimum_required(VERSION 2.6.2 FATAL_ERROR)
-
-+set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
-+
- find_package(Phonon REQUIRED)
- find_package(OpenGL REQUIRED)
-
-@@ -17,4 +19,3 @@
- add_subdirectory(qt7)
- endif (Q_WS_MAC)
-
--macro_display_feature_log()
diff --git a/media-libs/phonon-qt7/metadata.xml b/media-libs/phonon-qt7/metadata.xml
deleted file mode 100644
index 465cd64145b1..000000000000
--- a/media-libs/phonon-qt7/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>kde@gentoo.org</email>
- <name>Gentoo KDE Project</name>
- </maintainer>
- <maintainer type="project">
- <email>prefix@gentoo.org</email>
- <name>Gentoo Prefix</name>
- </maintainer>
-</pkgmetadata>
diff --git a/media-libs/phonon-qt7/phonon-qt7-0_pre20110424.ebuild b/media-libs/phonon-qt7/phonon-qt7-0_pre20110424.ebuild
deleted file mode 100644
index e844131a519a..000000000000
--- a/media-libs/phonon-qt7/phonon-qt7-0_pre20110424.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils
-
-DESCRIPTION="Phonon QuickTime7 backend"
-HOMEPAGE="https://projects.kde.org/projects/kdesupport/phonon/phonon-quicktime"
-SRC_URI="https://dev.gentoo.org/~dilfridge/distfiles/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-KEYWORDS="~ppc-macos ~x64-macos"
-SLOT="0"
-IUSE="debug"
-
-RDEPEND=">=media-libs/phonon-4.5"
-DEPEND="${RDEPEND}
- >=dev-util/automoc-0.9.87
- media-libs/opengl-apple
- sys-devel/gcc-apple[objc]
- virtual/pkgconfig
-"
-
-# needs OpenGL, how do I specify this properly?
-# I just depended on opengl-apple, hope this is what you meant -- grobian
-
-S="${WORKDIR}/${PN}"
-
-PATCHES=(
- "${FILESDIR}/${PN}-noshow.patch"
- "${FILESDIR}"/${P}-QWidget-cast-dynamic.patch
- "${FILESDIR}"/${P}-darwin11.patch
-)
-
-src_prepare() {
- cmake-utils_src_prepare # for PATCHES
- sed -i -e "/^include_directories/s:): ${EPREFIX}/usr/include):" \
- CMakeLists.txt || die
-}