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