Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/tomahawk/
Date: Mon, 27 Nov 2017 09:03:36
Message-Id: 1511773399.3d125913602038f4eade8d3106558d4cb0a9e59c.asturm@gentoo
1 commit: 3d125913602038f4eade8d3106558d4cb0a9e59c
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 26 22:17:22 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 27 09:03:19 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d125913
7
8 media-sound/tomahawk: Drop live ebuild
9
10 "This project is essentially abandoned."
11
12 See also:
13 https://github.com/tomahawk-player/tomahawk/commit/c8389592488c07079f40e7edb9195cfabbc58740
14
15 Package-Manager: Portage-2.3.16, Repoman-2.3.6
16
17 media-sound/tomahawk/tomahawk-9999.ebuild | 78 -------------------------------
18 1 file changed, 78 deletions(-)
19
20 diff --git a/media-sound/tomahawk/tomahawk-9999.ebuild b/media-sound/tomahawk/tomahawk-9999.ebuild
21 deleted file mode 100644
22 index e433366a995..00000000000
23 --- a/media-sound/tomahawk/tomahawk-9999.ebuild
24 +++ /dev/null
25 @@ -1,78 +0,0 @@
26 -# Copyright 1999-2017 Gentoo Foundation
27 -# Distributed under the terms of the GNU General Public License v2
28 -
29 -EAPI=6
30 -
31 -inherit kde5
32 -
33 -if [[ ${KDE_BUILD_TYPE} != live ]]; then
34 - SRC_URI="http://download.tomahawk-player.org/${P}.tar.bz2"
35 - KEYWORDS="~amd64 ~x86"
36 -else
37 - EGIT_REPO_URI="https://github.com/tomahawk-player/${PN}.git"
38 -fi
39 -
40 -DESCRIPTION="Multi-source social music player"
41 -HOMEPAGE="https://www.tomahawk-player.org/"
42 -
43 -LICENSE="GPL-3 BSD"
44 -SLOT="0"
45 -IUSE="+hatchet telepathy xmpp"
46 -
47 -CDEPEND="
48 - $(add_frameworks_dep attica)
49 - $(add_qt_dep qtdbus)
50 - $(add_qt_dep qtgui)
51 - $(add_qt_dep qtnetwork)
52 - $(add_qt_dep qtsql)
53 - $(add_qt_dep qtsvg)
54 - $(add_qt_dep qtwebkit)
55 - $(add_qt_dep qtwidgets)
56 - $(add_qt_dep qtx11extras)
57 - $(add_qt_dep qtxml)
58 - app-crypt/qca:2[qt5]
59 - dev-cpp/lucene++
60 - dev-cpp/sparsehash
61 - dev-libs/boost:=
62 - dev-libs/qtkeychain:=[qt5(+)]
63 - >=dev-libs/quazip-0.7.2[qt5]
64 - media-libs/liblastfm[qt5]
65 - >=media-libs/taglib-1.8.0
66 - media-video/vlc:=[flac,dvbpsi,ffmpeg,mp3]
67 - >=net-libs/gnutls-3.2:=
68 - x11-libs/libX11
69 - hatchet? ( dev-cpp/websocketpp )
70 - telepathy? ( net-libs/telepathy-qt[qt5(+)] )
71 - xmpp? ( net-libs/jreen[qt5] )
72 -"
73 -DEPEND="${CDEPEND}
74 - $(add_qt_dep designer)
75 - $(add_qt_dep linguist-tools)
76 - $(add_qt_dep qtconcurrent)
77 -"
78 -RDEPEND="${CDEPEND}
79 - app-crypt/qca:2[ssl]
80 -"
81 -
82 -DOCS=( AUTHORS ChangeLog README.md )
83 -
84 -PATCHES=( "${FILESDIR}/${PN}-liblastfm-cmake.patch" )
85 -
86 -src_configure() {
87 - local mycmakeargs=(
88 - -DWITH_CRASHREPORTER=OFF
89 - -DBUILD_TESTS=OFF
90 - -DBUILD_TOOLS=OFF
91 - -DBUILD_WITH_QT4=OFF
92 - -DWITH_KDE4=OFF
93 - -DBUILD_HATCHET=$(usex hatchet)
94 - -DWITH_TelepathyQt=$(usex telepathy)
95 - -DWITH_Jreen=$(usex xmpp)
96 - )
97 -
98 - if [[ ${KDE_BUILD_TYPE} != live ]]; then
99 - mycmakeargs+=( -DBUILD_RELEASE=ON )
100 - fi
101 -
102 - kde5_src_configure
103 -}