diff options
author | Ingmar Vanhassel <ingmar@gentoo.org> | 2008-01-18 01:51:54 +0000 |
---|---|---|
committer | Ingmar Vanhassel <ingmar@gentoo.org> | 2008-01-18 01:51:54 +0000 |
commit | a8c4718ed58d7bb41951d3a9943a3c0bfc6e4660 (patch) | |
tree | e4e7f19f13ecef582d94370485e3aefc14fd5afc /kde-base/phonon | |
parent | Added KDE 4.0.0's parley. (diff) | |
download | historical-a8c4718ed58d7bb41951d3a9943a3c0bfc6e4660.tar.gz historical-a8c4718ed58d7bb41951d3a9943a3c0bfc6e4660.tar.bz2 historical-a8c4718ed58d7bb41951d3a9943a3c0bfc6e4660.zip |
Added KDE 4.0.0's phonon.
Package-Manager: portage-2.1.4
Diffstat (limited to 'kde-base/phonon')
-rw-r--r-- | kde-base/phonon/ChangeLog | 10 | ||||
-rw-r--r-- | kde-base/phonon/files/digest-phonon-4.0.0 | 3 | ||||
-rw-r--r-- | kde-base/phonon/metadata.xml | 5 | ||||
-rw-r--r-- | kde-base/phonon/phonon-4.0.0.ebuild | 34 |
4 files changed, 52 insertions, 0 deletions
diff --git a/kde-base/phonon/ChangeLog b/kde-base/phonon/ChangeLog new file mode 100644 index 000000000000..23ca11e62771 --- /dev/null +++ b/kde-base/phonon/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for kde-base/phonon +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/phonon/ChangeLog,v 1.1 2008/01/18 01:51:53 ingmar Exp $ + +*phonon-4.0.0 (18 Jan 2008) + + 18 Jan 2008; Ingmar Vanhassel <ingmar@gentoo.org> +metadata.xml, + +phonon-4.0.0.ebuild: + Added KDE 4.0.0's phonon. + diff --git a/kde-base/phonon/files/digest-phonon-4.0.0 b/kde-base/phonon/files/digest-phonon-4.0.0 new file mode 100644 index 000000000000..048f72444352 --- /dev/null +++ b/kde-base/phonon/files/digest-phonon-4.0.0 @@ -0,0 +1,3 @@ +MD5 da93f59497ff90ad01bd4ab9b458f6cb kdebase-runtime-4.0.0.tar.bz2 48097008 +RMD160 1f0cc150d6c5ae4c883474eb737be18dce1a4422 kdebase-runtime-4.0.0.tar.bz2 48097008 +SHA256 f0dc4263bb501dc08317583499ee4b3c012540f12e9c7fe4396a8ef75fb27a6b kdebase-runtime-4.0.0.tar.bz2 48097008 diff --git a/kde-base/phonon/metadata.xml b/kde-base/phonon/metadata.xml new file mode 100644 index 000000000000..8d1e86a9cefb --- /dev/null +++ b/kde-base/phonon/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>kde</herd> +</pkgmetadata> diff --git a/kde-base/phonon/phonon-4.0.0.ebuild b/kde-base/phonon/phonon-4.0.0.ebuild new file mode 100644 index 000000000000..c5ec7c03ac52 --- /dev/null +++ b/kde-base/phonon/phonon-4.0.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/phonon/phonon-4.0.0.ebuild,v 1.1 2008/01/18 01:51:53 ingmar Exp $ + +EAPI="1" + +KMNAME=kdebase-runtime +KMMODULE=phonon +inherit kde4-meta + +DESCRIPTION="KDE multimedia API" +KEYWORDS="~amd64 ~x86" +IUSE="debug xcb" + +# There's currently only a xine backend for phonon available, +# a gstreamer backend from TrollTech is in the works. +DEPEND=" + >=media-libs/xine-lib-1.1.9 + xcb? ( x11-libs/libxcb )" +RDEPEND="${DEPEND}" + +pkg_setup() { + if use xcb; then + KDE4_BUILT_WITH_USE_CHECK="media-libs/xine-lib xcb" + fi + kde4-base_pkg_setup +} + +src_compile() { + mycmakeargs="${mycmakeargs} + $(cmake-utils_usr_with xcb XCB) + -DWITH_Xine=ON" + kde4-meta_src_compile +} |