diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2009-10-06 20:45:06 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2009-10-06 20:45:06 +0000 |
commit | 6470f4ac5b472ee7d10da40dfb9b9166e181ef01 (patch) | |
tree | 8621e1eb122f523b48febd6a5d56a7203c5878da /kde-base/phonon-kde | |
parent | Version bump. Completely rewritten. Now ship with mkl, and idb. Synchronize e... (diff) | |
download | historical-6470f4ac5b472ee7d10da40dfb9b9166e181ef01.tar.gz historical-6470f4ac5b472ee7d10da40dfb9b9166e181ef01.tar.bz2 historical-6470f4ac5b472ee7d10da40dfb9b9166e181ef01.zip |
Version bump KDE 4.3.2
Package-Manager: portage-2.2_rc44/cvs/Linux x86_64
RepoMan-Options: --force
Diffstat (limited to 'kde-base/phonon-kde')
-rw-r--r-- | kde-base/phonon-kde/ChangeLog | 7 | ||||
-rw-r--r-- | kde-base/phonon-kde/phonon-kde-4.3.2.ebuild | 45 |
2 files changed, 51 insertions, 1 deletions
diff --git a/kde-base/phonon-kde/ChangeLog b/kde-base/phonon-kde/ChangeLog index 720550361db8..094d465a3e15 100644 --- a/kde-base/phonon-kde/ChangeLog +++ b/kde-base/phonon-kde/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/phonon-kde # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/phonon-kde/ChangeLog,v 1.23 2009/09/01 16:24:15 tampakrap Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/phonon-kde/ChangeLog,v 1.24 2009/10/06 20:36:02 alexxy Exp $ + +*phonon-kde-4.3.2 (06 Oct 2009) + + 06 Oct 2009; Alexey Shvetsov <alexxy@gentoo.org> +phonon-kde-4.3.2.ebuild: + Version bump *phonon-kde-4.3.1 (01 Sep 2009) diff --git a/kde-base/phonon-kde/phonon-kde-4.3.2.ebuild b/kde-base/phonon-kde/phonon-kde-4.3.2.ebuild new file mode 100644 index 000000000000..a5a6d59497db --- /dev/null +++ b/kde-base/phonon-kde/phonon-kde-4.3.2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/phonon-kde/phonon-kde-4.3.2.ebuild,v 1.1 2009/10/06 20:36:02 alexxy Exp $ + +EAPI="2" + +KMNAME="kdebase-runtime" +KMMODULE="phonon" +inherit kde4-meta + +DESCRIPTION="Phonon KDE Integration" +HOMEPAGE="http://phonon.kde.org" + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86" +LICENSE="GPL-2" +IUSE="debug pulseaudio +xine" + +DEPEND=" + media-libs/alsa-lib + media-sound/phonon[xine?] + pulseaudio? ( media-sound/pulseaudio ) +" +RDEPEND="${DEPEND} + !kdeprefix? ( !kde-base/phonon-xine[-kdeprefix] ) +" + +src_prepare() { + # Don't build tests - they require OpenGL + sed -e 's/add_subdirectory(tests)//' \ + -i phonon/CMakeLists.txt || die "Failed to disable tests" + + # Disable automagic + sed -e 's/find_package(Xine)/macro_optional_find_package(Xine)/' \ + -i phonon/kcm/xine/CMakeLists.txt || die "Failed to make xine optional" + + kde4-meta_src_prepare +} + +src_configure() { + mycmakeargs="${mycmakeargs} + $(cmake-utils_use_with pulseaudio PulseAudio) + $(cmake-utils_use_with xine)" + + kde4-meta_src_configure +} |