Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
alexxy 09/01/27 15:23:21
Modified: ChangeLog
Added: phonon-4.3.0.ebuild
Log:
Bump to new phonon-4.3.0
(Portage version: 2.2_rc19/cvs/Linux 2.6.28-gentoo x86_64)
Revision Changes Path
1.5 media-sound/phonon/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/phonon/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/phonon/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/phonon/ChangeLog?r1=1.4&r2=1.5
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/phonon/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog 15 Nov 2008 21:58:01 -0000 1.4
+++ ChangeLog 27 Jan 2009 15:23:21 -0000 1.5
@@ -1,6 +1,11 @@
# ChangeLog for media-sound/phonon
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/phonon/ChangeLog,v 1.4 2008/11/15 21:58:01 vapier Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/phonon/ChangeLog,v 1.5 2009/01/27 15:23:21 alexxy Exp $
+
+*phonon-4.3.0 (27 Jan 2009)
+
+ 27 Jan 2009; Alexey Shvetsov <alexxy@g.o> +phonon-4.3.0.ebuild:
+ Bump to new phonon-4.3.0
15 Nov 2008; Mike Frysinger <vapier@g.o> phonon-4.2.0.ebuild:
Add ppc/ppc64 love #244306.
1.1 media-sound/phonon/phonon-4.3.0.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/phonon/phonon-4.3.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/phonon/phonon-4.3.0.ebuild?rev=1.1&content-type=text/plain
Index: phonon-4.3.0.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/phonon/phonon-4.3.0.ebuild,v 1.1 2009/01/27 15:23:21 alexxy Exp $
EAPI="2"
inherit cmake-utils
KDE_VERSION="4.2.0"
DESCRIPTION="KDE multimedia API"
HOMEPAGE="http://phonon.kde.org"
SRC_URI="mirror://kde/stable/${KDE_VERSION}/src/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug gstreamer +xcb +xine"
RDEPEND="
!kde-base/phonon-xine
!x11-libs/qt-phonon:4
>=x11-libs/qt-test-4.4.0:4
>=x11-libs/qt-dbus-4.4.0:4
>=x11-libs/qt-gui-4.4.0:4
gstreamer? (
media-libs/gstreamer
media-libs/gst-plugins-base
>=x11-libs/qt-opengl-4.4.0:4
)
xine? (
>=media-libs/xine-lib-1.1.15-r1[xcb?]
xcb? ( x11-libs/libxcb )
)
"
DEPEND="${RDEPEND}
>=kde-base/automoc-0.9.87
"
pkg_setup() {
if use !xine && use !gstreamer; then
die "you must at least select one backend for phonon"
fi
}
src_configure() {
mycmakeargs="${mycmakeargs}
$(cmake-utils_use_with gstreamer GStreamer)
$(cmake-utils_use_with gstreamer GStreamerPlugins)
$(cmake-utils_use_with xine Xine)"
if use xine; then
mycmakeargs="${mycmakeargs}
$(cmake-utils_use_with xcb XCB)"
else
sed -e '447d' -i "${WORKDIR}/${P}/CMakeLists.txt"
fi
cmake-utils_src_configure
}
|
|