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.3.1.ebuild
Date: Fri, 28 May 2010 02:55:28
Message-Id: 20100528025525.312BB2CF39@corvid.gentoo.org
1 jmbsvicetto 10/05/28 02:55:25
2
3 Modified: ChangeLog
4 Added: amarok-utils-2.3.1.ebuild
5 Log:
6 [media-sound/amarok-utils] Bumped to the 2.3.1 release.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.23 media-sound/amarok-utils/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/amarok-utils/ChangeLog?rev=1.23&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/amarok-utils/ChangeLog?rev=1.23&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/amarok-utils/ChangeLog?r1=1.22&r2=1.23
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/amarok-utils/ChangeLog,v
19 retrieving revision 1.22
20 retrieving revision 1.23
21 diff -u -r1.22 -r1.23
22 --- ChangeLog 19 Apr 2010 13:37:58 -0000 1.22
23 +++ ChangeLog 28 May 2010 02:55:24 -0000 1.23
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-sound/amarok-utils
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/amarok-utils/ChangeLog,v 1.22 2010/04/19 13:37:58 jmbsvicetto Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/amarok-utils/ChangeLog,v 1.23 2010/05/28 02:55:24 jmbsvicetto Exp $
29 +
30 +*amarok-utils-2.3.1 (28 May 2010)
31 +
32 + 28 May 2010; Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o>
33 + +amarok-utils-2.3.1.ebuild:
34 + [media-sound/amarok-utils] Bumped to the 2.3.1 release.
35
36 19 Apr 2010; Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o>
37 amarok-utils-2.3.0.90.ebuild:
38
39
40
41 1.1 media-sound/amarok-utils/amarok-utils-2.3.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/amarok-utils/amarok-utils-2.3.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/amarok-utils/amarok-utils-2.3.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: amarok-utils-2.3.1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 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.3.1.ebuild,v 1.1 2010/05/28 02:55:24 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 ~ppc ~x86"
74 SLOT="4"
75 IUSE="debug"
76
77 DEPEND="
78 >=media-libs/taglib-1.6.1[asf,mp4]
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=(
106 -DWITH_PLAYER=OFF
107 -DWITH_UTILITIES=ON
108 )
109
110 cmake-utils_src_configure
111 }