Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/phonon-kde: ChangeLog phonon-kde-4.3.5.ebuild
Date: Mon, 25 Jan 2010 17:31:48
Message-Id: E1NZSmu-0008K6-Ea@stork.gentoo.org
1 scarabeus 10/01/25 17:31:44
2
3 Modified: ChangeLog
4 Added: phonon-kde-4.3.5.ebuild
5 Log:
6 Version bump KDE 4.3.5
7 (Portage version: 2.2_rc61/cvs/Linux x86_64, RepoMan options: --force)
8
9 Revision Changes Path
10 1.44 kde-base/phonon-kde/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/phonon-kde/ChangeLog?rev=1.44&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/phonon-kde/ChangeLog?rev=1.44&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/phonon-kde/ChangeLog?r1=1.43&r2=1.44
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/kde-base/phonon-kde/ChangeLog,v
19 retrieving revision 1.43
20 retrieving revision 1.44
21 diff -u -r1.43 -r1.44
22 --- ChangeLog 23 Jan 2010 17:08:25 -0000 1.43
23 +++ ChangeLog 25 Jan 2010 17:31:43 -0000 1.44
24 @@ -1,6 +1,12 @@
25 # ChangeLog for kde-base/phonon-kde
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/kde-base/phonon-kde/ChangeLog,v 1.43 2010/01/23 17:08:25 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/kde-base/phonon-kde/ChangeLog,v 1.44 2010/01/25 17:31:43 scarabeus Exp $
29 +
30 +*phonon-kde-4.3.5 (25 Jan 2010)
31 +
32 + 25 Jan 2010; Tomáš Chvátal <scarabeus@g.o>
33 + +phonon-kde-4.3.5.ebuild:
34 + Version bump
35
36 23 Jan 2010; Raúl Porcel <armin76@g.o> phonon-kde-4.3.4.ebuild:
37 Add ~arm
38
39
40
41 1.1 kde-base/phonon-kde/phonon-kde-4.3.5.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/phonon-kde/phonon-kde-4.3.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/phonon-kde/phonon-kde-4.3.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: phonon-kde-4.3.5.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/kde-base/phonon-kde/phonon-kde-4.3.5.ebuild,v 1.1 2010/01/25 17:31:43 scarabeus Exp $
51
52 EAPI="2"
53
54 KMNAME="kdebase-runtime"
55 KMMODULE="phonon"
56 inherit kde4-meta
57
58 DESCRIPTION="Phonon KDE Integration"
59 HOMEPAGE="http://phonon.kde.org"
60
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
62 LICENSE="GPL-2"
63 IUSE="alsa debug pulseaudio +xine"
64
65 DEPEND="
66 media-sound/phonon[xine?]
67 alsa? ( media-libs/alsa-lib )
68 pulseaudio? ( media-sound/pulseaudio )
69 "
70 RDEPEND="${DEPEND}"
71
72 add_blocker phonon-xine
73
74 PATCHES=(
75 "${FILESDIR}"/${PN}-4.3.4-optional-alsa.patch
76 )
77
78 src_prepare() {
79 kde4-meta_src_prepare
80
81 # Don't build tests - they require OpenGL
82 sed -e 's/add_subdirectory(tests)//' \
83 -i phonon/CMakeLists.txt || die "Failed to disable tests"
84
85 # Disable automagic
86 sed -e 's/find_package(Xine)/macro_optional_find_package(Xine)/' \
87 -i phonon/kcm/xine/CMakeLists.txt || die "Failed to make xine optional"
88 }
89
90 src_configure() {
91 mycmakeargs=(
92 $(cmake-utils_use_with alsa)
93 $(cmake-utils_use_with pulseaudio PulseAudio)
94 $(cmake-utils_use_with xine)
95 )
96
97 kde4-meta_src_configure
98 }