Gentoo Archives: gentoo-commits

From: "Johannes Huber (johu)" <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/tomahawk: tomahawk-0.5.0.ebuild ChangeLog tomahawk-0.4.1.ebuild
Date: Sat, 30 Jun 2012 21:33:50
Message-Id: 20120630213339.BC6DA2004B@flycatcher.gentoo.org
1 johu 12/06/30 21:33:39
2
3 Modified: ChangeLog
4 Added: tomahawk-0.5.0.ebuild
5 Removed: tomahawk-0.4.1.ebuild
6 Log:
7 Version bump, remove old.
8
9 (Portage version: 2.2.0_alpha114/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.13 media-sound/tomahawk/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tomahawk/ChangeLog?rev=1.13&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tomahawk/ChangeLog?rev=1.13&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tomahawk/ChangeLog?r1=1.12&r2=1.13
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-sound/tomahawk/ChangeLog,v
21 retrieving revision 1.12
22 retrieving revision 1.13
23 diff -u -r1.12 -r1.13
24 --- ChangeLog 30 Jun 2012 20:46:17 -0000 1.12
25 +++ ChangeLog 30 Jun 2012 21:33:39 -0000 1.13
26 @@ -1,6 +1,12 @@
27 # ChangeLog for media-sound/tomahawk
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-sound/tomahawk/ChangeLog,v 1.12 2012/06/30 20:46:17 johu Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-sound/tomahawk/ChangeLog,v 1.13 2012/06/30 21:33:39 johu Exp $
31 +
32 +*tomahawk-0.5.0 (30 Jun 2012)
33 +
34 + 30 Jun 2012; Johannes Huber <johu@g.o> +tomahawk-0.5.0.ebuild,
35 + -tomahawk-0.4.1.ebuild:
36 + Version bump, remove old.
37
38 30 Jun 2012; Johannes Huber <johu@g.o> tomahawk-9999.ebuild:
39 Sync live ebuild with dev overlay. Updates dependencies and build options.
40
41
42
43 1.1 media-sound/tomahawk/tomahawk-0.5.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tomahawk/tomahawk-0.5.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tomahawk/tomahawk-0.5.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: tomahawk-0.5.0.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-sound/tomahawk/tomahawk-0.5.0.ebuild,v 1.1 2012/06/30 21:33:39 johu Exp $
53
54 EAPI=4
55
56 QT_MINIMAL="4.7.0"
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/tomahawk.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 fftw jabber libsamplerate 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
85 >=media-libs/phonon-4.5.0
86 media-libs/taglib
87 x11-libs/libX11
88 >=x11-libs/qt-core-${QT_MINIMAL}:4
89 >=x11-libs/qt-dbus-${QT_MINIMAL}:4
90 >=x11-libs/qt-gui-${QT_MINIMAL}:4
91 >=x11-libs/qt-sql-${QT_MINIMAL}:4[sqlite]
92 >=x11-libs/qt-webkit-${QT_MINIMAL}:4
93 fftw? ( sci-libs/fftw:3.0 )
94 jabber? ( net-libs/jreen )
95 libsamplerate? ( media-libs/libsamplerate )
96 twitter? ( net-libs/qtweetlib )
97 "
98 RDEPEND="${DEPEND}
99 app-crypt/qca-ossl
100 "
101
102 src_configure() {
103 local mycmakeargs=(
104 $(cmake-utils_use_with jabber Jreen)
105 $(cmake-utils_use_with twitter QTweetLib)
106 )
107
108 if [[ ${PV} != *9999* ]]; then
109 mycmakeargs+=( -DBUILD_RELEASE=ON )
110 fi
111
112 cmake-utils_src_configure
113 }
114
115 src_compile() {
116 cmake-utils_src_compile
117 }
118
119 src_install() {
120 cmake-utils_src_install
121 }