summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kde-base/phonon-kde/Manifest1
-rw-r--r--kde-base/phonon-kde/phonon-kde-4.8.2.ebuild38
2 files changed, 39 insertions, 0 deletions
diff --git a/kde-base/phonon-kde/Manifest b/kde-base/phonon-kde/Manifest
new file mode 100644
index 00000000000..2a161e43129
--- /dev/null
+++ b/kde-base/phonon-kde/Manifest
@@ -0,0 +1 @@
+DIST kde-runtime-4.8.2.tar.xz 5849868 SHA256 e8de619b0b3e550240ddeff335cb381d5dc3cdb64d69b096f9401f40b933a46b SHA512 6912bab8fa041bdb758b5ed5bb51bb1fcd9d3b8fc9c6960804bcdbd5989cf959971a49ec8b6af5d9b418b9d18c5e985a34aea19ebc60a129588b0b6f2eb0a746 WHIRLPOOL fe936bb38ed718a51b651ab20487c3cf460000871fd81c1b2f9241377cb00ce74a1ab6b01cb5a46297e43785a298c9db519a04c0a93ecfbf29ec6f55d971afb9
diff --git a/kde-base/phonon-kde/phonon-kde-4.8.2.ebuild b/kde-base/phonon-kde/phonon-kde-4.8.2.ebuild
new file mode 100644
index 00000000000..f86c882b265
--- /dev/null
+++ b/kde-base/phonon-kde/phonon-kde-4.8.2.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2012 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.8.2.ebuild,v 1.1 2012/04/04 23:59:26 johu Exp $
+
+EAPI=4
+
+KMNAME="kde-runtime"
+KMMODULE="phonon"
+inherit kde4-meta
+
+DESCRIPTION="Phonon KDE Integration"
+HOMEPAGE="http://phonon.kde.org"
+
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+LICENSE="GPL-2"
+IUSE="alsa debug pulseaudio"
+
+DEPEND="
+ >=media-libs/phonon-4.4.3
+ alsa? ( media-libs/alsa-lib )
+ pulseaudio? (
+ dev-libs/glib:2
+ media-libs/libcanberra
+ >=media-sound/pulseaudio-0.9.21[glib]
+ )
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ mycmakeargs=(
+ -DBUILD_tests=OFF
+ -DWITH_Xine=OFF
+ $(cmake-utils_use_with alsa)
+ $(cmake-utils_use_with pulseaudio PulseAudio)
+ )
+
+ kde4-meta_src_configure
+}