diff options
author | Johannes Huber <johu@gentoo.org> | 2012-08-23 11:56:42 +0000 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2012-08-23 11:56:42 +0000 |
commit | ef67db721dc1217fde58f0557526d7ee403fb315 (patch) | |
tree | b64ff28ddf41bb80eaf06125ab3613a6b4ecb9dd /media-libs/phonon-gstreamer/phonon-gstreamer-4.6.2-r1.ebuild | |
parent | Fix building with glibc-2.16 wrt #425248 by Diego Elio Pettenò <flameeyes@ge... (diff) | |
download | gentoo-2-ef67db721dc1217fde58f0557526d7ee403fb315.tar.gz gentoo-2-ef67db721dc1217fde58f0557526d7ee403fb315.tar.bz2 gentoo-2-ef67db721dc1217fde58f0557526d7ee403fb315.zip |
Revision bump adds upstream patch to fix .desktop validation by Michael Palimaka <kensington@gentoo.org> wrt bug #431602. Remove old.
(Portage version: 2.2.0_alpha122/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/phonon-gstreamer/phonon-gstreamer-4.6.2-r1.ebuild')
-rw-r--r-- | media-libs/phonon-gstreamer/phonon-gstreamer-4.6.2-r1.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/media-libs/phonon-gstreamer/phonon-gstreamer-4.6.2-r1.ebuild b/media-libs/phonon-gstreamer/phonon-gstreamer-4.6.2-r1.ebuild new file mode 100644 index 000000000000..efa9e71ce379 --- /dev/null +++ b/media-libs/phonon-gstreamer/phonon-gstreamer-4.6.2-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon-gstreamer/phonon-gstreamer-4.6.2-r1.ebuild,v 1.1 2012/08/23 11:56:42 johu Exp $ + +EAPI=4 + +[[ ${PV} == *9999 ]] && git_eclass="git-2" +EGIT_REPO_URI="git://anongit.kde.org/${PN}" + +MY_PN="phonon-backend-gstreamer" +MY_P=${MY_PN}-${PV} + +inherit cmake-utils ${git_eclass} + +DESCRIPTION="Phonon GStreamer backend" +HOMEPAGE="https://projects.kde.org/projects/kdesupport/phonon/phonon-gstreamer" +[[ ${PV} == *9999 ]] || SRC_URI="mirror://kde/stable/phonon/${MY_PN}/${PV}/src/${MY_P}.tar.xz" + +LICENSE="LGPL-2.1" +if [[ ${PV} == *9999 ]]; then + KEYWORDS="" +else + KEYWORDS="~amd64 ~arm ~hppa ~x86 ~amd64-fbsd" +fi +SLOT="0" +IUSE="alsa debug +network" + +RDEPEND=" + media-libs/gstreamer + media-plugins/gst-plugins-meta[alsa?,ogg,vorbis] + >=media-libs/phonon-4.6.0 + >=x11-libs/qt-core-4.6.0:4[glib] + >=x11-libs/qt-gui-4.6.0:4[glib] + >=x11-libs/qt-opengl-4.6.0:4 + virtual/opengl + network? ( media-plugins/gst-plugins-soup ) +" +DEPEND="${RDEPEND} + >=dev-util/automoc-0.9.87 + virtual/pkgconfig +" + +S="${WORKDIR}/${MY_P}" + +PATCHES=( "${FILESDIR}/${P}-desktop.patch" ) + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_with alsa) + ) + cmake-utils_src_configure +} |