diff options
author | Karel Kočí <cynerd@email.cz> | 2018-08-12 19:15:23 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2018-08-12 19:15:23 +0200 |
commit | 6ab2ede60dd64987ba50a8a7163699c938595167 (patch) | |
tree | fd230c1184fcff01dc2b7b48f212b87c6cccb62f | |
parent | 4213ee3cd2ce3f36777591a3e2c8757fe5d5943b (diff) | |
download | gentoo-personal-overlay-6ab2ede60dd64987ba50a8a7163699c938595167.tar.gz gentoo-personal-overlay-6ab2ede60dd64987ba50a8a7163699c938595167.tar.bz2 gentoo-personal-overlay-6ab2ede60dd64987ba50a8a7163699c938595167.zip |
Drop media-video/minitube
I am not using it so why have it.
-rw-r--r-- | media-video/minitube/Manifest | 1 | ||||
-rw-r--r-- | media-video/minitube/files/minitube-2.5.1-disable-updates.patch | 11 | ||||
-rw-r--r-- | media-video/minitube/minitube-2.9-r1.ebuild | 87 |
3 files changed, 0 insertions, 99 deletions
diff --git a/media-video/minitube/Manifest b/media-video/minitube/Manifest deleted file mode 100644 index 347bcfa..0000000 --- a/media-video/minitube/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST minitube-2.9.tar.gz 1000060 SHA256 0f51fb86d0fdfbcf00af142868ceeacb6c27eb8a1e36d856162e23d63e90eb07 SHA512 94bac1b7cb1b3388256d088bfb9ffdfe75cc3c1624f60722cedd561015e1afa96351d4ac55b6be27bb5e00641cd7e3198cf2285a0e9b0c586d62d1a7a8c510c9 WHIRLPOOL b740624af0f75520dbf805381b82c7f219fa2d2f250aacbf199919f77378ca4fb1a5c304eca25b38504d2831fa071aa7ae782589e567e7426d9a2abaf8c0c892 diff --git a/media-video/minitube/files/minitube-2.5.1-disable-updates.patch b/media-video/minitube/files/minitube-2.5.1-disable-updates.patch deleted file mode 100644 index a5f496e..0000000 --- a/media-video/minitube/files/minitube-2.5.1-disable-updates.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- minitube-2.5.1.orig/src/mainwindow.cpp -+++ minitube-2.5.1/src/mainwindow.cpp -@@ -232,8 +232,6 @@ - - ChannelAggregator::instance()->start(); - -- checkForUpdate(); -- - initialized = true; - } - diff --git a/media-video/minitube/minitube-2.9-r1.ebuild b/media-video/minitube/minitube-2.9-r1.ebuild deleted file mode 100644 index f4b872f..0000000 --- a/media-video/minitube/minitube-2.9-r1.ebuild +++ /dev/null @@ -1,87 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PLOCALES="ar ca ca_ES da de_DE el en es es_AR es_ES fi fi_FI fr he_IL hr hu -ia it jv nl pl pl_PL pt_BR ro ru sk sl tr zh_CN" -PLOCALE_BACKUP="en" - -inherit l10n qmake-utils - -DESCRIPTION="Qt5 YouTube Client" -HOMEPAGE="http://flavio.tordini.org/minitube" -SRC_URI="https://github.com/flaviotordini/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="debug +download" - -DEPEND="dev-qt/qtgui:5[accessibility] - dev-qt/qtdbus:5 - dev-qt/qtnetwork:5 - dev-qt/qtscript:5 - dev-qt/qtsql:5[sqlite] - dev-qt/qtwidgets:5 - dev-qt/qtsingleapplication[qt5(+),X] - media-libs/phonon[qt5(+)] -" -RDEPEND="${DEPEND}" - -DOCS="AUTHORS CHANGES TODO" - -#455976 -PATCHES=( "${FILESDIR}"/${PN}-2.5.1-disable-updates.patch ) - -src_prepare() { - epatch "${PATCHES[@]}" - - # 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 - sed -i \ - 's|include(src/qtsingleapplication/qtsingleapplication.pri)|CONFIG += qtsingleapplication|g' \ - ${PN}.pro || die "Failed to unbundle qtsingleapplication" - - # 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 - - epatch_user -} - -src_configure() { - eqmake5 -} - -src_install() { - emake INSTALL_ROOT="${D}" install - einstalldocs - newicon images/app.png minitube.png -} - -pkg_postinst() { - elog "" - elog "Since version 2.4, you need to generate a Google API Key to use" - elog "with this application. Please head over to" - elog "https://console.developers.google.com/ and" - elog "https://github.com/flaviotordini/minitube/blob/master/README.md" - elog "for more information. Once you have generated your key," - elog "please put it in QSettings key \"googleApiKey\", e.g.:" - elog "# echo 'googleApiKey=YourKeyHere' >> \"\${HOME}/.config/Flavio Tordini/Minitube.conf\"" - elog "" - - 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 -} |