diff options
Diffstat (limited to 'media-video/snappy/snappy-0.2.ebuild')
-rw-r--r-- | media-video/snappy/snappy-0.2.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/media-video/snappy/snappy-0.2.ebuild b/media-video/snappy/snappy-0.2.ebuild new file mode 100644 index 000000000000..3a5415b7eeb4 --- /dev/null +++ b/media-video/snappy/snappy-0.2.ebuild @@ -0,0 +1,45 @@ +# 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-0.2.ebuild,v 1.1 2011/06/20 16:31:09 nirbheek Exp $ + +EAPI="4" + +if [[ ${PV} = 9999 ]]; then + inherit autotools git +fi + +DESCRIPTION="A simple media player written using GStreamer and Clutter" +HOMEPAGE="https://github.com/luisbg/snappy" + +if [[ ${PV} = 9999 ]]; then + 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.xz" + 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}" + +# Re-add ToDo, docs/ for next release +DOCS="AUTHORS README THANKS" + +src_configure() { + # Just needs GDBus, will fallback gracefully without dbus installed. + # Probably. + econf --enable-dbus +} |