diff options
author | Wulf Krueger <philantrop@gentoo.org> | 2008-02-07 00:12:59 +0000 |
---|---|---|
committer | Wulf Krueger <philantrop@gentoo.org> | 2008-02-07 00:12:59 +0000 |
commit | 5dce68c9cc05b718532a522d45797435bc4d68b2 (patch) | |
tree | 3405da9ffcff7553acfd1a283d8344919ace829c /kde-base/phonon | |
parent | rename check_apache_threads to has_apache_threads as suggested by dberkholz (diff) | |
download | historical-5dce68c9cc05b718532a522d45797435bc4d68b2.tar.gz historical-5dce68c9cc05b718532a522d45797435bc4d68b2.tar.bz2 historical-5dce68c9cc05b718532a522d45797435bc4d68b2.zip |
Version bump to KDE 4.0.1.
Package-Manager: portage-2.1.4.1
Diffstat (limited to 'kde-base/phonon')
-rw-r--r-- | kde-base/phonon/ChangeLog | 7 | ||||
-rw-r--r-- | kde-base/phonon/phonon-4.0.1.ebuild | 36 |
2 files changed, 42 insertions, 1 deletions
diff --git a/kde-base/phonon/ChangeLog b/kde-base/phonon/ChangeLog index 23ca11e62771..42333e562726 100644 --- a/kde-base/phonon/ChangeLog +++ b/kde-base/phonon/ChangeLog @@ -1,6 +1,11 @@ # 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 $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/phonon/ChangeLog,v 1.2 2008/02/07 00:12:51 philantrop Exp $ + +*phonon-4.0.1 (06 Feb 2008) + + 06 Feb 2008; Wulf C. Krueger <philantrop@gentoo.org> +phonon-4.0.1.ebuild: + Version bump to KDE 4.0.1. *phonon-4.0.0 (18 Jan 2008) diff --git a/kde-base/phonon/phonon-4.0.1.ebuild b/kde-base/phonon/phonon-4.0.1.ebuild new file mode 100644 index 000000000000..4ffda9785921 --- /dev/null +++ b/kde-base/phonon/phonon-4.0.1.ebuild @@ -0,0 +1,36 @@ +# 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.1.ebuild,v 1.1 2008/02/07 00:12:51 philantrop 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_use_with xcb XCB) + -DWITH_Xine=ON" + + kde4-meta_src_compile +} |