Gentoo Archives: gentoo-commits

From: "Alexey Shvetsov (alexxy)" <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/phonon: ChangeLog phonon-4.3.0.ebuild
Date: Tue, 27 Jan 2009 15:23:23
Message-Id: E1LRpmb-0001Xs-4M@stork.gentoo.org
1 alexxy 09/01/27 15:23:21
2
3 Modified: ChangeLog
4 Added: phonon-4.3.0.ebuild
5 Log:
6 Bump to new phonon-4.3.0
7 (Portage version: 2.2_rc19/cvs/Linux 2.6.28-gentoo x86_64)
8
9 Revision Changes Path
10 1.5 media-sound/phonon/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/phonon/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/phonon/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/phonon/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/phonon/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 15 Nov 2008 21:58:01 -0000 1.4
23 +++ ChangeLog 27 Jan 2009 15:23:21 -0000 1.5
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-sound/phonon
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/phonon/ChangeLog,v 1.4 2008/11/15 21:58:01 vapier Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/phonon/ChangeLog,v 1.5 2009/01/27 15:23:21 alexxy Exp $
30 +
31 +*phonon-4.3.0 (27 Jan 2009)
32 +
33 + 27 Jan 2009; Alexey Shvetsov <alexxy@g.o> +phonon-4.3.0.ebuild:
34 + Bump to new phonon-4.3.0
35
36 15 Nov 2008; Mike Frysinger <vapier@g.o> phonon-4.2.0.ebuild:
37 Add ppc/ppc64 love #244306.
38
39
40
41 1.1 media-sound/phonon/phonon-4.3.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/phonon/phonon-4.3.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/phonon/phonon-4.3.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: phonon-4.3.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/phonon/phonon-4.3.0.ebuild,v 1.1 2009/01/27 15:23:21 alexxy Exp $
51
52 EAPI="2"
53 inherit cmake-utils
54
55 KDE_VERSION="4.2.0"
56
57 DESCRIPTION="KDE multimedia API"
58 HOMEPAGE="http://phonon.kde.org"
59 SRC_URI="mirror://kde/stable/${KDE_VERSION}/src/${P}.tar.bz2"
60
61 LICENSE="LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="debug gstreamer +xcb +xine"
65
66 RDEPEND="
67 !kde-base/phonon-xine
68 !x11-libs/qt-phonon:4
69 >=x11-libs/qt-test-4.4.0:4
70 >=x11-libs/qt-dbus-4.4.0:4
71 >=x11-libs/qt-gui-4.4.0:4
72 gstreamer? (
73 media-libs/gstreamer
74 media-libs/gst-plugins-base
75 >=x11-libs/qt-opengl-4.4.0:4
76 )
77 xine? (
78 >=media-libs/xine-lib-1.1.15-r1[xcb?]
79 xcb? ( x11-libs/libxcb )
80 )
81 "
82
83 DEPEND="${RDEPEND}
84 >=kde-base/automoc-0.9.87
85 "
86
87 pkg_setup() {
88 if use !xine && use !gstreamer; then
89 die "you must at least select one backend for phonon"
90 fi
91 }
92
93 src_configure() {
94 mycmakeargs="${mycmakeargs}
95 $(cmake-utils_use_with gstreamer GStreamer)
96 $(cmake-utils_use_with gstreamer GStreamerPlugins)
97 $(cmake-utils_use_with xine Xine)"
98
99 if use xine; then
100 mycmakeargs="${mycmakeargs}
101 $(cmake-utils_use_with xcb XCB)"
102 else
103 sed -e '447d' -i "${WORKDIR}/${P}/CMakeLists.txt"
104 fi
105 cmake-utils_src_configure
106 }