commit:     bce46c09f2d61267611c69ca7728ed244503a9a9
Author:     Davide Pesavento <pesa <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  9 17:49:06 2016 +0000
Commit:     Davide Pesavento <pesa <AT> gentoo <DOT> org>
CommitDate: Tue Feb  9 17:49:06 2016 +0000
URL:        https://gitweb.gentoo.org/proj/qt.git/commit/?id=bce46c09

media-video/minitube: remove unmaintained broken live ebuild

 .../minitube/files/minitube-1.9-gcc47.patch        | 12 ---
 media-video/minitube/metadata.xml                  | 19 -----
 media-video/minitube/minitube-9999.ebuild          | 87 ----------------------
 3 files changed, 118 deletions(-)

diff --git a/media-video/minitube/files/minitube-1.9-gcc47.patch 
b/media-video/minitube/files/minitube-1.9-gcc47.patch
deleted file mode 100644
index 4589eb5..0000000
--- a/media-video/minitube/files/minitube-1.9-gcc47.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-Index: minitube/src/qtsingleapplication/qtlocalpeer.cpp
-===================================================================
---- minitube.orig/src/qtsingleapplication/qtlocalpeer.cpp
-+++ minitube/src/qtsingleapplication/qtlocalpeer.cpp
-@@ -58,6 +58,7 @@ static PProcessIdToSessionId pProcessIdT
- #endif
- #if defined(Q_OS_UNIX)
- #include <time.h>
-+#include <unistd.h>
- #endif
- 
- namespace QtLP_Private {

diff --git a/media-video/minitube/metadata.xml 
b/media-video/minitube/metadata.xml
deleted file mode 100644
index ff20181..0000000
--- a/media-video/minitube/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <maintainer type="person">
-               <email>[email protected]</email>
-               <name>Markos Chandras</name>
-       </maintainer>
-       <maintainer type="project">
-               <email>[email protected]</email>
-               <name>Gentoo Qt Project</name>
-       </maintainer>
-       <maintainer type="project">
-               <email>[email protected]</email>
-               <name>Gentoo Video project</name>
-       </maintainer>
-       <use>
-               <flag name="download">Enable support for downloading YouTube 
videos</flag>
-       </use>
-</pkgmetadata>

diff --git a/media-video/minitube/minitube-9999.ebuild 
b/media-video/minitube/minitube-9999.ebuild
deleted file mode 100644
index 0657693..0000000
--- a/media-video/minitube/minitube-9999.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-PLOCALES="ar ca ca_ES da de_DE el en es es_AR es_ES fi fi_FI fr gl he_IL hr hu
-ia id it jv ka_GE nb nl nn pl pl_PL pt pt_BR ro ru sk sl sq sr sv_SE tr uk_UA
-zh_CN"
-
-EGIT_REPO_URI="https://github.com/flaviotordini/minitube.git";
-inherit l10n qt4-r2 git-2
-
-DESCRIPTION="Qt4 YouTube Client"
-HOMEPAGE="http://flavio.tordini.org/minitube";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS=""
-IUSE="debug download gstreamer kde"
-
-DEPEND=">=dev-qt/qtgui-4.8:4[accessibility]
-       >=dev-qt/qtdbus-4.8:4
-       >=dev-qt/qtsql-4.8:4
-       kde? ( || ( media-libs/phonon[gstreamer?,qt4] >=dev-qt/qtphonon-4.8:4 ) 
)
-       !kde? ( || ( >=dev-qt/qtphonon-4.8:4 media-libs/phonon[gstreamer?,qt4] 
) )
-       gstreamer? (
-               media-plugins/gst-plugins-soup
-               media-plugins/gst-plugins-ffmpeg
-               media-plugins/gst-plugins-faac
-               media-plugins/gst-plugins-faad
-       )
-"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${PN}
-
-DOCS="AUTHORS CHANGES TODO"
-
-pkg_pretend() {
-       if [[ -z ${MINITUBE_GOOGLE_API_KEY} ]]; then
-               eerror ""
-               eerror "Since version 2.4, you need to generate a Google API 
Key to use"
-               eerror "with this application. Please head over to"
-               eerror "https://console.developers.google.com/ and"
-               eerror 
"https://github.com/flaviotordini/minitube/blob/master/README.md";
-               eerror "for more information. Once you have generated your key,"
-               eerror "please export it to your environment ie :"
-               eerror "'export MINITUBE_GOOGLE_API_KEY=\"YourAPIKeyHere\""
-               eerror "and then try to merge this package again"
-               eerror ""
-               die "MINITUBE_GOOGLE_API_KEY env variable not defined!"
-       fi
-}
-
-src_prepare() {
-       qt4-r2_src_prepare
-
-       # Remove unneeded translations
-       local trans=
-       for x in $(l10n_get_locales); do
-               trans+="${x}.ts "
-       done
-       if [[ -n ${trans} ]]; then
-               sed -i -e "/^TRANSLATIONS/s/+=.*/+=${trans}/" locale/locale.pri 
|| die
-       fi
-       # gcc-4.7. Bug #422977
-       epatch "${FILESDIR}"/${PN}-1.9-gcc47.patch
-       # Enable video downloads. Bug #491344
-       use download && { echo "DEFINES += APP_DOWNLOADS" >> ${PN}.pro; }
-       echo "DEFINES += APP_GOOGLE_API_KEY=${MINITUBE_GOOGLE_API_KEY}" >> 
${PN}.pro
-}
-
-src_install() {
-       qt4-r2_src_install
-       newicon images/app.png minitube.png
-}
-
-pkg_postinst() {
-       if use download; then
-               elog "You activated the 'download' USE flag. This allows you to"
-               elog "download videos from youtube, which might violate the 
youtube"
-               elog "terms-of-service (TOS) in some legislations. If 
downloading"
-               elog "youtube-videos is not allowed in your legislation, please"
-               elog "disable the 'download' use flag. For details on the 
youtube TOS,"
-               elog "see http://www.youtube.com/t/terms";
-       fi
-}

Reply via email to