Gentoo Archives: gentoo-commits

From: "Agostino Sarubbo (ago)" <ago@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/tomahawk: tomahawk-0.6.1.ebuild ChangeLog
Date: Wed, 27 Mar 2013 16:29:02
Message-Id: 20130327162840.4BC002171D@flycatcher.gentoo.org
1 ago 13/03/27 16:28:40
2
3 Modified: ChangeLog
4 Added: tomahawk-0.6.1.ebuild
5 Log:
6 Version bump to 0.6.1, wrt to bug #463272
7
8 (Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key 7194459F)
9
10 Revision Changes Path
11 1.23 media-sound/tomahawk/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tomahawk/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tomahawk/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tomahawk/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/tomahawk/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 2 Mar 2013 22:04:34 -0000 1.22
24 +++ ChangeLog 27 Mar 2013 16:28:40 -0000 1.23
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-sound/tomahawk
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/tomahawk/ChangeLog,v 1.22 2013/03/02 22:04:34 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/tomahawk/ChangeLog,v 1.23 2013/03/27 16:28:40 ago Exp $
30 +
31 +*tomahawk-0.6.1 (27 Mar 2013)
32 +
33 + 27 Mar 2013; Agostino Sarubbo <ago@g.o> +tomahawk-0.6.1.ebuild:
34 + Version bump to 0.6.1, wrt to bug #463272
35
36 02 Mar 2013; Markos Chandras <hwoarang@g.o> tomahawk-0.5.5.ebuild,
37 tomahawk-0.6.0.ebuild, tomahawk-9999.ebuild:
38
39
40
41 1.1 media-sound/tomahawk/tomahawk-0.6.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tomahawk/tomahawk-0.6.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tomahawk/tomahawk-0.6.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tomahawk-0.6.1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-sound/tomahawk/tomahawk-0.6.1.ebuild,v 1.1 2013/03/27 16:28:40 ago Exp $
51
52 EAPI=5
53
54 QT_MINIMAL="4.7.0"
55
56 CMAKE_MIN_VERSION="2.8.6"
57
58 if [[ ${PV} != *9999* ]]; then
59 SRC_URI="http://download.tomahawk-player.org/${P}.tar.bz2"
60 KEYWORDS="~amd64 ~x86"
61 else
62 GIT_ECLASS="git-2"
63 EGIT_REPO_URI="git://github.com/tomahawk-player/${PN}.git"
64 KEYWORDS=""
65 fi
66
67 inherit cmake-utils qt4-r2 ${GIT_ECLASS}
68
69 DESCRIPTION="Qt playdar social music player"
70 HOMEPAGE="http://tomahawk-player.org/"
71
72 LICENSE="GPL-3 BSD"
73 SLOT="0"
74 IUSE="debug jabber twitter"
75
76 DEPEND="
77 app-crypt/qca
78 >=dev-cpp/clucene-2.3.3.4
79 >=dev-libs/boost-1.41
80 >=dev-libs/libattica-0.4.0
81 dev-libs/qjson
82 dev-libs/quazip
83 >=media-libs/liblastfm-1.0.1
84 >=media-libs/libechonest-2.0.1
85 >=media-libs/phonon-4.5.0
86 media-libs/taglib
87 x11-libs/libX11
88 >=dev-qt/qtcore-${QT_MINIMAL}:4
89 >=dev-qt/qtdbus-${QT_MINIMAL}:4
90 >=dev-qt/qtgui-${QT_MINIMAL}:4
91 >=dev-qt/qtsql-${QT_MINIMAL}:4[sqlite]
92 >=dev-qt/qtwebkit-${QT_MINIMAL}:4
93 jabber? ( >=net-libs/jreen-1.1.1 )
94 twitter? ( net-libs/qtweetlib )
95 "
96 RDEPEND="${DEPEND}
97 app-crypt/qca-ossl
98 "
99
100 src_configure() {
101 local mycmakeargs=(
102 $(cmake-utils_use_with jabber Jreen)
103 $(cmake-utils_use_with twitter QTweetLib)
104 )
105
106 if [[ ${PV} != *9999* ]]; then
107 mycmakeargs+=( -DBUILD_RELEASE=ON )
108 fi
109
110 cmake-utils_src_configure
111 }
112
113 src_compile() {
114 cmake-utils_src_compile
115 }
116
117 src_install() {
118 cmake-utils_src_install
119 }