Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/tomahawk/
Date: Tue, 01 May 2018 18:49:44
Message-Id: 1525200571.5c933d0c1863147db8a63c8503eb6002a581d52d.johu@gentoo
1 commit: 5c933d0c1863147db8a63c8503eb6002a581d52d
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 1 18:46:16 2018 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Tue May 1 18:49:31 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c933d0c
7
8 media-sound/tomahawk: Snapshot bump 0.9.0_pre20180501
9
10 Package-Manager: Portage-2.3.31, Repoman-2.3.9
11
12 media-sound/tomahawk/Manifest | 1 +
13 .../tomahawk/tomahawk-0.9.0_pre20180501.ebuild | 70 ++++++++++++++++++++++
14 2 files changed, 71 insertions(+)
15
16 diff --git a/media-sound/tomahawk/Manifest b/media-sound/tomahawk/Manifest
17 index dfa5a8e4793..5b46c7f1068 100644
18 --- a/media-sound/tomahawk/Manifest
19 +++ b/media-sound/tomahawk/Manifest
20 @@ -1 +1,2 @@
21 DIST tomahawk-0.9.0_pre20170808.tar.gz 9913232 BLAKE2B 5a7ebd9419fece090c0aec1f8f47bf35e1f0fbae5cd6a41803ac265e7310dadac61ba4f2e25b0d2fbbb0068cbb3f7098c1d330ac81e671be1028ed3b78d32560 SHA512 edaa4c1637ca460f838dfdd7ecc9d5dae0b66a8280deb8dc6140c673ecc76aa1055efbbac1e9b2937ec01d6dd657935b907cadceb2059f8e055305e872866c2b
22 +DIST tomahawk-0.9.0_pre20180501.tar.gz 9913223 BLAKE2B 430fedf1a06307721d36ce733dc6f380e56ca4ba018816b4d6cf70370a383945033220bded8fef1aaeb0deb49ec89422c4ade6add997d9034620d42c43ba2b8f SHA512 51ee268a7165ee4968cd3fbd883c8e86fdee049dbf85d11ff3212d1648f08557c868c0c3f0f448c3a7fa6a825af4ee94b498b5027a788b545587bf4bae1be1c7
23
24 diff --git a/media-sound/tomahawk/tomahawk-0.9.0_pre20180501.ebuild b/media-sound/tomahawk/tomahawk-0.9.0_pre20180501.ebuild
25 new file mode 100644
26 index 00000000000..78600519cd5
27 --- /dev/null
28 +++ b/media-sound/tomahawk/tomahawk-0.9.0_pre20180501.ebuild
29 @@ -0,0 +1,70 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +COMMIT=34c1f88171f00a3e9fae57250799f3d3623b5f74
36 +inherit kde5 vcs-snapshot
37 +
38 +DESCRIPTION="Multi-source social music player"
39 +HOMEPAGE="https://www.tomahawk-player.org/"
40 +SRC_URI="https://github.com/${PN}-player/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="GPL-3 BSD"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
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-1.1.0_pre20150206
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-0.9.7-r1[qt5(+)] )
71 + xmpp? ( >=net-libs/jreen-1.3.0[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 +src_configure() {
83 + local mycmakeargs=(
84 + -DWITH_CRASHREPORTER=OFF
85 + -DBUILD_TESTS=OFF
86 + -DBUILD_TOOLS=OFF
87 + -DBUILD_WITH_QT4=OFF
88 + -DWITH_KDE4=OFF
89 + -DBUILD_HATCHET=$(usex hatchet)
90 + -DWITH_TelepathyQt=$(usex telepathy)
91 + -DWITH_Jreen=$(usex xmpp)
92 + )
93 +
94 + if [[ ${KDE_BUILD_TYPE} != live ]]; then
95 + mycmakeargs+=( -DBUILD_RELEASE=ON )
96 + fi
97 +
98 + kde5_src_configure
99 +}