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