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