diff options
author | Nirbheek Chauhan <nirbheek@gentoo.org> | 2011-06-14 01:14:18 +0000 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@gentoo.org> | 2011-06-14 01:14:18 +0000 |
commit | 1f139b3cc56ecd4e2e0bbb8903f124c6954d60d0 (patch) | |
tree | 7e116e3dde803d4cf1452a6b9819992c7ec443b6 /media-video/snappy | |
parent | ppc stable (bug 363185) (diff) | |
download | gentoo-2-1f139b3cc56ecd4e2e0bbb8903f124c6954d60d0.tar.gz gentoo-2-1f139b3cc56ecd4e2e0bbb8903f124c6954d60d0.tar.bz2 gentoo-2-1f139b3cc56ecd4e2e0bbb8903f124c6954d60d0.zip |
Add the media player snappy because leio wants it in the tree
(Portage version: 2.2.0_alpha39_p14/cvs/Linux x86_64)
Diffstat (limited to 'media-video/snappy')
-rw-r--r-- | media-video/snappy/ChangeLog | 10 | ||||
-rw-r--r-- | media-video/snappy/metadata.xml | 12 | ||||
-rw-r--r-- | media-video/snappy/snappy-9999.ebuild | 41 |
3 files changed, 63 insertions, 0 deletions
diff --git a/media-video/snappy/ChangeLog b/media-video/snappy/ChangeLog new file mode 100644 index 000000000000..e68cf2cf6a27 --- /dev/null +++ b/media-video/snappy/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for media-video/snappy +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/snappy/ChangeLog,v 1.1 2011/06/14 01:14:18 nirbheek Exp $ + +*snappy-9999 (14 Jun 2011) + + 14 Jun 2011; Nirbheek Chauhan <nirbheek@gentoo.org> +snappy-9999.ebuild, + +metadata.xml: + Add the media player snappy because leio wants it in the tree + diff --git a/media-video/snappy/metadata.xml b/media-video/snappy/metadata.xml new file mode 100644 index 000000000000..7deb8bb633ff --- /dev/null +++ b/media-video/snappy/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>gstreamer</herd> + <maintainer> + <email>nirbheek@gentoo.org</email> + <name>Nirbheek Chauhan</name> + </maintainer> + <longdescription lang="en"> + Snappy is a gstreamer + clutter media player with powerful features in mind + </longdescription> +</pkgmetadata> diff --git a/media-video/snappy/snappy-9999.ebuild b/media-video/snappy/snappy-9999.ebuild new file mode 100644 index 000000000000..f455dea1d9c3 --- /dev/null +++ b/media-video/snappy/snappy-9999.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/snappy/snappy-9999.ebuild,v 1.1 2011/06/14 01:14:18 nirbheek Exp $ + +EAPI="4" + +DESCRIPTION="A simple media player written using GStreamer and Clutter" +HOMEPAGE="https://github.com/luisbg/snappy" + +if [[ ${PV} = 9999 ]]; then + inherit autotools git + EGIT_REPO_URI="git://github.com/luisbg/${PN}.git" + EGIT_BOOTSTRAP="eautoreconf" + KEYWORDS="" +else + SRC_URI="http://people.collabora.co.uk/~luisbg/${PN}/${P}.tar.bz2" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-2 LGPL-2" +SLOT="0" +IUSE="" + +RDEPEND=">=dev-libs/glib-2.26:2 + >=media-libs/clutter-1.2.0:1.0 + >=media-libs/clutter-gst-1.0.0:1.0 + x11-libs/libXtst + + >=media-libs/gstreamer-0.10.30:0.10 + >=media-libs/gst-plugins-base-0.10.30:0.10 + + >=media-plugins/gst-plugins-meta-0.10-r2:0.10" +DEPEND="${RDEPEND}" + +DOCS="AUTHORS README THANKS ToDo docs/clutter_controls_layout docs/keyboard_controls" + +src_configure() { + # Just needs GDBus, will fallback gracefully without dbus installed. + # Probably. + econf --enable-dbus +} |