Gentoo Archives: gentoo-commits

From: "Jorge Manuel B. S. Vicetto (jmbsvicetto)" <jmbsvicetto@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/amarok-utils: amarok-utils-2.2.2.90.ebuild ChangeLog
Date: Fri, 19 Feb 2010 16:41:56
Message-Id: E1NiVvN-0008Mp-DE@stork.gentoo.org
1 jmbsvicetto 10/02/19 16:41:53
2
3 Modified: ChangeLog
4 Added: amarok-utils-2.2.2.90.ebuild
5 Log:
6 Bumped amarok to the 2.2.2.90 release (2.3 Beta 1).
7 Dropped the bindist use flag and added a hard dep on taglib[asf,mp4] (bug 299899) - thanks to Jeff Mitchell (jefferai).
8 (Portage version: 2.2_rc62/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.13 media-sound/amarok-utils/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/amarok-utils/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/amarok-utils/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/amarok-utils/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/amarok-utils/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 8 Jan 2010 15:50:10 -0000 1.12
24 +++ ChangeLog 19 Feb 2010 16:41:52 -0000 1.13
25 @@ -1,6 +1,14 @@
26 # ChangeLog for media-sound/amarok-utils
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/amarok-utils/ChangeLog,v 1.12 2010/01/08 15:50:10 jmbsvicetto Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/amarok-utils/ChangeLog,v 1.13 2010/02/19 16:41:52 jmbsvicetto Exp $
30 +
31 +*amarok-utils-2.2.2.90 (19 Feb 2010)
32 +
33 + 19 Feb 2010; Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o>
34 + +amarok-utils-2.2.2.90.ebuild:
35 + Bumped amarok to the 2.2.2.90 release (2.3 Beta 1).
36 + Dropped the bindist use flag and added a hard dep on taglib[asf,mp4] (bug
37 + 299899) - thanks to Jeff Mitchell (jefferai).
38
39 *amarok-utils-2.2.2 (08 Jan 2010)
40
41
42
43
44 1.1 media-sound/amarok-utils/amarok-utils-2.2.2.90.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/amarok-utils/amarok-utils-2.2.2.90.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/amarok-utils/amarok-utils-2.2.2.90.ebuild?rev=1.1&content-type=text/plain
48
49 Index: amarok-utils-2.2.2.90.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-sound/amarok-utils/amarok-utils-2.2.2.90.ebuild,v 1.1 2010/02/19 16:41:52 jmbsvicetto Exp $
54
55 EAPI="2"
56
57 if [[ ${PV} = *9999* ]]; then
58 GIT_ECLASS="git"
59 EGIT_PROJECT="amarok"
60 EGIT_REPO_URI="git://gitorious.org/amarok/amarok.git"
61 fi
62
63 inherit base cmake-utils ${GIT_ECLASS}
64
65 MY_PN="amarok"
66
67 DESCRIPTION="Various utility programs for Amarok."
68 HOMEPAGE="http://amarok.kde.org/"
69 if [[ ${PV} = *9999* ]]; then
70 SRC_URI=""
71 else
72 SRC_URI="mirror://kde/unstable/${MY_PN}/${PV}/src/${MY_PN}-${PV}.tar.bz2"
73 fi
74
75 LICENSE="GPL-2"
76 KEYWORDS="~amd64 ~x86"
77 SLOT="4"
78 IUSE="debug"
79
80 DEPEND="
81 >=media-libs/taglib-1.6.1[asf,mp4]
82 >=media-libs/taglib-extras-1.0.1
83 >=x11-libs/qt-core-4.4:4
84 >=x11-libs/qt-dbus-4.4:4
85 "
86 RDEPEND="${DEPEND}
87 !<media-sound/amarok-2.1.80:2
88 !<media-sound/amarok-2.1.80:${SLOT}
89 "
90
91 S="${WORKDIR}/${MY_PN}-${PV}"
92
93 DOCS="TODO README ChangeLog AUTHORS"
94
95 src_prepare() {
96 # Disable po processing
97 sed -e "s:include(MacroOptionalAddSubdirectory)::" \
98 -i "${S}/CMakeLists.txt" \
99 || die "Removing include of MacroOptionalAddSubdirectory failed."
100 sed -e "s:macro_optional_add_subdirectory( po )::" \
101 -i "${S}/CMakeLists.txt" \
102 || die "Removing include of MacroOptionalAddSubdirectory failed."
103
104 base_src_prepare
105 }
106
107 src_configure() {
108 mycmakeargs=(
109 -DWITH_PLAYER=OFF
110 -DWITH_UTILITIES=ON
111 )
112
113 cmake-utils_src_configure
114 }