diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-11-26 23:17:22 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-11-27 10:03:19 +0100 |
commit | 3d125913602038f4eade8d3106558d4cb0a9e59c (patch) | |
tree | 3e153ede7d6f8feb3b8d1af658f6c2c633b5ecb9 /media-sound/tomahawk | |
parent | media-sound/tomahawk: Add 0.9.0_pre20170808 snapshot (diff) | |
download | gentoo-3d125913602038f4eade8d3106558d4cb0a9e59c.tar.gz gentoo-3d125913602038f4eade8d3106558d4cb0a9e59c.tar.bz2 gentoo-3d125913602038f4eade8d3106558d4cb0a9e59c.zip |
media-sound/tomahawk: Drop live ebuild
"This project is essentially abandoned."
See also:
https://github.com/tomahawk-player/tomahawk/commit/c8389592488c07079f40e7edb9195cfabbc58740
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'media-sound/tomahawk')
-rw-r--r-- | media-sound/tomahawk/tomahawk-9999.ebuild | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/media-sound/tomahawk/tomahawk-9999.ebuild b/media-sound/tomahawk/tomahawk-9999.ebuild deleted file mode 100644 index e433366a995b..000000000000 --- a/media-sound/tomahawk/tomahawk-9999.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit kde5 - -if [[ ${KDE_BUILD_TYPE} != live ]]; then - SRC_URI="http://download.tomahawk-player.org/${P}.tar.bz2" - KEYWORDS="~amd64 ~x86" -else - EGIT_REPO_URI="https://github.com/tomahawk-player/${PN}.git" -fi - -DESCRIPTION="Multi-source social music player" -HOMEPAGE="https://www.tomahawk-player.org/" - -LICENSE="GPL-3 BSD" -SLOT="0" -IUSE="+hatchet telepathy xmpp" - -CDEPEND=" - $(add_frameworks_dep attica) - $(add_qt_dep qtdbus) - $(add_qt_dep qtgui) - $(add_qt_dep qtnetwork) - $(add_qt_dep qtsql) - $(add_qt_dep qtsvg) - $(add_qt_dep qtwebkit) - $(add_qt_dep qtwidgets) - $(add_qt_dep qtx11extras) - $(add_qt_dep qtxml) - app-crypt/qca:2[qt5] - dev-cpp/lucene++ - dev-cpp/sparsehash - dev-libs/boost:= - dev-libs/qtkeychain:=[qt5(+)] - >=dev-libs/quazip-0.7.2[qt5] - media-libs/liblastfm[qt5] - >=media-libs/taglib-1.8.0 - media-video/vlc:=[flac,dvbpsi,ffmpeg,mp3] - >=net-libs/gnutls-3.2:= - x11-libs/libX11 - hatchet? ( dev-cpp/websocketpp ) - telepathy? ( net-libs/telepathy-qt[qt5(+)] ) - xmpp? ( net-libs/jreen[qt5] ) -" -DEPEND="${CDEPEND} - $(add_qt_dep designer) - $(add_qt_dep linguist-tools) - $(add_qt_dep qtconcurrent) -" -RDEPEND="${CDEPEND} - app-crypt/qca:2[ssl] -" - -DOCS=( AUTHORS ChangeLog README.md ) - -PATCHES=( "${FILESDIR}/${PN}-liblastfm-cmake.patch" ) - -src_configure() { - local mycmakeargs=( - -DWITH_CRASHREPORTER=OFF - -DBUILD_TESTS=OFF - -DBUILD_TOOLS=OFF - -DBUILD_WITH_QT4=OFF - -DWITH_KDE4=OFF - -DBUILD_HATCHET=$(usex hatchet) - -DWITH_TelepathyQt=$(usex telepathy) - -DWITH_Jreen=$(usex xmpp) - ) - - if [[ ${KDE_BUILD_TYPE} != live ]]; then - mycmakeargs+=( -DBUILD_RELEASE=ON ) - fi - - kde5_src_configure -} |