Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/cantata: cantata-1.0.3.ebuild ChangeLog
Date: Sun, 02 Jun 2013 06:12:32
Message-Id: 20130602061225.831E12171D@flycatcher.gentoo.org
1 yngwin 13/06/02 06:12:25
2
3 Modified: ChangeLog
4 Added: cantata-1.0.3.ebuild
5 Log:
6 Version bump (bug #468570); ebuild from kde overlay with slight improvements
7
8 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 0x2B2474AD43CE296E!)
9
10 Revision Changes Path
11 1.17 media-sound/cantata/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/cantata/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/cantata/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/cantata/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/cantata/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 12 May 2013 07:45:44 -0000 1.16
24 +++ ChangeLog 2 Jun 2013 06:12:25 -0000 1.17
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-sound/cantata
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/cantata/ChangeLog,v 1.16 2013/05/12 07:45:44 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/cantata/ChangeLog,v 1.17 2013/06/02 06:12:25 yngwin Exp $
30 +
31 +*cantata-1.0.3 (02 Jun 2013)
32 +
33 + 02 Jun 2013; Ben de Groot <yngwin@g.o> +cantata-1.0.3.ebuild:
34 + Version bump (bug #468570); ebuild from kde overlay with slight improvements
35
36 12 May 2013; Patrick Lauer <patrick@g.o> metadata.xml:
37 Remove obsolete useflag from metadata.xml
38
39
40
41 1.1 media-sound/cantata/cantata-1.0.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/cantata/cantata-1.0.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/cantata/cantata-1.0.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: cantata-1.0.3.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/cantata/cantata-1.0.3.ebuild,v 1.1 2013/06/02 06:12:25 yngwin Exp $
51
52 EAPI=5
53 KDE_REQUIRED="optional"
54 inherit kde4-base
55
56 DESCRIPTION="A featureful and configurable Qt4 client for the music player daemon (MPD)"
57 HOMEPAGE="http://kde-apps.org/content/show.php?content=147733"
58 SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="4"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="kde mtp phonon qt5 replaygain webkit"
64 REQUIRED_USE="mtp? ( kde ) qt5? ( !kde !phonon )"
65
66 DEPEND="
67 kde? (
68 media-libs/taglib[asf,mp4]
69 media-libs/taglib-extras
70 mtp? ( media-libs/libmtp )
71 )
72 phonon? ( || ( media-libs/phonon dev-qt/qtphonon:4 ) )
73 qt5? (
74 dev-qt/qtconcurrent:5
75 dev-qt/qtnetwork:5
76 dev-qt/qtwidgets:5
77 dev-qt/qtxml:5
78 )
79 !qt5? (
80 dev-qt/qtcore:4
81 dev-qt/qtdbus:4
82 dev-qt/qtgui:4
83 )
84 replaygain? (
85 media-libs/speex
86 media-libs/taglib[asf,mp4]
87 media-libs/taglib-extras
88 media-sound/mpg123
89 virtual/ffmpeg
90 )
91 webkit? ( dev-qt/qtwebkit:4 )
92 "
93 RDEPEND="${DEPEND}
94 $(add_kdebase_dep oxygen-icons)
95 "
96
97 src_prepare() {
98 # make desktop file pass validation
99 sed -e 's/MPD/MPD;/' -i ${PN}.desktop || die 'sed failed'
100 }
101
102 src_configure() {
103 local mycmakeargs=(
104 $(cmake-utils_use_enable kde)
105 $(cmake-utils_use_enable phonon)
106 $(cmake-utils_use_enable replaygain FFMPEG)
107 $(cmake-utils_use_enable replaygain MPG123)
108 $(cmake-utils_use_enable replaygain SPEEXDSP)
109 $(cmake-utils_use_enable mtp)
110 )
111
112 # kde fails to build without taglib
113 # taglib is required to enable replaygain
114 if use kde || use replaygain; then
115 mycmakeargs+=(
116 -DENABLE_TAGLIB=ON
117 -DENABLE_TAGLIB_EXTRAS=ON
118 )
119 fi
120
121 kde4-base_src_configure
122 }