From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SLZzw-0001Qj-LY for garchives@archives.gentoo.org; Sat, 21 Apr 2012 13:05:11 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E8E15E073E; Sat, 21 Apr 2012 13:05:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id B7FDEE073E for ; Sat, 21 Apr 2012 13:04:59 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C30EB1B408B for ; Sat, 21 Apr 2012 13:04:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 927C3E5403 for ; Sat, 21 Apr 2012 13:04:56 +0000 (UTC) From: "Christian Schmitt" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christian Schmitt" Message-ID: <1335013481.00d9b37ab5bfcbcc411f4a4813e9ab135fb556e2.christian@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-base/phonon-kde/ X-VCS-Repository: proj/kde X-VCS-Files: kde-base/phonon-kde/phonon-kde-4.8.2.ebuild X-VCS-Directories: kde-base/phonon-kde/ X-VCS-Committer: christian X-VCS-Committer-Name: Christian Schmitt X-VCS-Revision: 00d9b37ab5bfcbcc411f4a4813e9ab135fb556e2 X-VCS-Branch: master Date: Sat, 21 Apr 2012 13:04:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 5b98da95-46a5-43a8-9a0d-86dd3a2d25f4 X-Archives-Hash: 8bc97f0bb564d191c672ecaff186a708 commit: 00d9b37ab5bfcbcc411f4a4813e9ab135fb556e2 Author: Christian Schmitt ilovelinux de> AuthorDate: Sat Apr 21 13:00:41 2012 +0000 Commit: Christian Schmitt ilovelinux de> CommitDate: Sat Apr 21 13:04:41 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/kde.git;a=3Dc= ommit;h=3D00d9b37a [kde-base/phonon-kde-4.8.2] The media-libs/phonon xine plugin might be ma= sked, but this package still builds a KCM for phonon's xine backend, if xine is= found. This should probably also go into phonon-kde-4.8.1 --- kde-base/phonon-kde/phonon-kde-4.8.2.ebuild | 38 +++++++++++++++++++++= ++++++ 1 files changed, 38 insertions(+), 0 deletions(-) diff --git a/kde-base/phonon-kde/phonon-kde-4.8.2.ebuild b/kde-base/phono= n-kde/phonon-kde-4.8.2.ebuild new file mode 100644 index 0000000..f86c882 --- /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=3D4 + +KMNAME=3D"kde-runtime" +KMMODULE=3D"phonon" +inherit kde4-meta + +DESCRIPTION=3D"Phonon KDE Integration" +HOMEPAGE=3D"http://phonon.kde.org" + +KEYWORDS=3D"~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" +LICENSE=3D"GPL-2" +IUSE=3D"alsa debug pulseaudio" + +DEPEND=3D" + >=3Dmedia-libs/phonon-4.4.3 + alsa? ( media-libs/alsa-lib ) + pulseaudio? ( + dev-libs/glib:2 + media-libs/libcanberra + >=3Dmedia-sound/pulseaudio-0.9.21[glib] + ) +" +RDEPEND=3D"${DEPEND}" + +src_configure() { + mycmakeargs=3D( + -DBUILD_tests=3DOFF + -DWITH_Xine=3DOFF + $(cmake-utils_use_with alsa) + $(cmake-utils_use_with pulseaudio PulseAudio) + ) + + kde4-meta_src_configure +}