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 kde-base/phonon-kde: ChangeLog phonon-kde-4.2.2-r1.ebuild
Date: Thu, 23 Apr 2009 18:43:47
Message-Id: E1Lx3tg-0005PO-UZ@stork.gentoo.org
1 jmbsvicetto 09/04/23 18:43:44
2
3 Modified: ChangeLog
4 Added: phonon-kde-4.2.2-r1.ebuild
5 Log:
6 Pulled update phonon-kde from the kde-testing overlay - thanks to Maciej Mrozowski (reavertm) <reavertm@××××××.fm>.
7 Fixed automagic from bug 266968 + some other
8 (Portage version: 2.2_rc30/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.13 kde-base/phonon-kde/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/phonon-kde/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/phonon-kde/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/phonon-kde/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/kde-base/phonon-kde/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 17 Apr 2009 06:40:41 -0000 1.12
24 +++ ChangeLog 23 Apr 2009 18:43:44 -0000 1.13
25 @@ -1,6 +1,14 @@
26 # ChangeLog for kde-base/phonon-kde
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/kde-base/phonon-kde/ChangeLog,v 1.12 2009/04/17 06:40:41 alexxy Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/kde-base/phonon-kde/ChangeLog,v 1.13 2009/04/23 18:43:44 jmbsvicetto Exp $
30 +
31 +*phonon-kde-4.2.2-r1 (23 Apr 2009)
32 +
33 + 23 Apr 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o>
34 + +phonon-kde-4.2.2-r1.ebuild:
35 + Pulled update phonon-kde from the kde-testing overlay. Original ChangeLog
36 + entry: 21 Apr 2009; Maciej Mrozowski (reavertm) <reavertm@××××××.fm> Fixed
37 + automagic from bug 266968 + some other
38
39 17 Apr 2009; Alexey Shvetsov <alexxy@g.o> -phonon-kde-4.2.1.ebuild,
40 phonon-kde-4.2.2:
41
42
43
44 1.1 kde-base/phonon-kde/phonon-kde-4.2.2-r1.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/phonon-kde/phonon-kde-4.2.2-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/phonon-kde/phonon-kde-4.2.2-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: phonon-kde-4.2.2-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2009 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/kde-base/phonon-kde/phonon-kde-4.2.2-r1.ebuild,v 1.1 2009/04/23 18:43:44 jmbsvicetto Exp $
54
55 EAPI="2"
56
57 KMNAME="kdebase-runtime"
58 KMMODULE="phonon"
59 inherit kde4-meta
60
61 DESCRIPTION="Phonon KDE Integration"
62 HOMEPAGE="http://phonon.kde.org"
63
64 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
65 LICENSE="GPL-2"
66 IUSE="debug pulseaudio +xine"
67
68 DEPEND="
69 media-libs/alsa-lib
70 media-sound/phonon[xine?]
71 pulseaudio? ( media-sound/pulseaudio )
72 "
73 RDEPEND="${DEPEND}
74 !kdeprefix? ( !kde-base/phonon-xine[-kdeprefix] )
75 "
76
77 src_prepare() {
78 # Don't build tests - they require OpenGL
79 sed -e 's/add_subdirectory(tests)//' \
80 -i phonon/CMakeLists.txt || die "Failed to disable tests"
81
82 # Disable automagic
83 sed -e 's/find_package(Xine)/macro_optional_find_package(Xine)/' \
84 -i phonon/kcm/xine/CMakeLists.txt || die "Failed to make xine optional"
85
86 kde4-meta_src_prepare
87 }
88
89 src_configure() {
90 mycmakeargs="${mycmakeargs}
91 $(cmake-utils_use_with pulseaudio PulseAudio)
92 $(cmake-utils_use_with xine Xine)"
93
94 kde4-meta_src_configure
95 }