diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-03-16 03:34:48 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-03-16 03:34:48 +0000 |
commit | 75a3089655844e9416f937ce7cb159347ba58b4b (patch) | |
tree | e7226707e2cec7e76f64686edb3cb7623c5548bc /media-plugins/grilo-plugins/grilo-plugins-0.1.18.ebuild | |
parent | Version bump fixing some network errors; drop old. (diff) | |
download | gentoo-2-75a3089655844e9416f937ce7cb159347ba58b4b.tar.gz gentoo-2-75a3089655844e9416f937ce7cb159347ba58b4b.tar.bz2 gentoo-2-75a3089655844e9416f937ce7cb159347ba58b4b.zip |
Version bump with some bugfixes. Add patch for tracker-0.14 support. Drop old.
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Diffstat (limited to 'media-plugins/grilo-plugins/grilo-plugins-0.1.18.ebuild')
-rw-r--r-- | media-plugins/grilo-plugins/grilo-plugins-0.1.18.ebuild | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/media-plugins/grilo-plugins/grilo-plugins-0.1.18.ebuild b/media-plugins/grilo-plugins/grilo-plugins-0.1.18.ebuild new file mode 100644 index 000000000000..d792f6555eac --- /dev/null +++ b/media-plugins/grilo-plugins/grilo-plugins-0.1.18.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/grilo-plugins/grilo-plugins-0.1.18.ebuild,v 1.1 2012/03/16 03:34:47 tetromino Exp $ + +EAPI="4" +GNOME2_LA_PUNT="yes" + +inherit autotools eutils gnome2 + +DESCRIPTION="A framework for easy media discovery and browsing" +HOMEPAGE="https://live.gnome.org/Grilo" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="tracker upnp +vimeo +youtube" + +RDEPEND=" + >=dev-libs/glib-2.26:2 + =media-libs/grilo-${PV}[network] + + dev-libs/gmime:2.6 + dev-libs/libxml2:2 + dev-db/sqlite:3 + + tracker? ( >=app-misc/tracker-0.10.5 ) + youtube? ( >=dev-libs/libgdata-0.7 + >=media-libs/libquvi-0.2.15 ) + upnp? ( >=net-libs/gupnp-0.13 + >=net-libs/gupnp-av-0.5 ) + vimeo? ( net-libs/libsoup:2.4 + dev-libs/libgcrypt )" +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.9" + +# `make check` doesn't do anything, and ${S}/test/test fails without all plugins +RESTRICT="test" + +pkg_setup() { + DOCS="AUTHORS NEWS README" + # --enable-debug only changes CFLAGS, useless for us + G2CONF="${G2CONF} + --disable-static + --disable-debug + --disable-uninstalled" + + # Plugins + # TODO: Enable Blip.TV support (requires librest) + G2CONF="${G2CONF} + --enable-apple-trailers + --enable-bookmarks + --enable-filesystem + --enable-flickr + --enable-gravatar + --enable-jamendo + --enable-lastfm-albumart + --enable-localmetadata + --enable-metadata-store + --enable-podcasts + --disable-bliptv + --disable-shoutcast + $(use_enable tracker) + $(use_enable upnp) + $(use_enable vimeo) + $(use_enable youtube)" +} + +src_prepare() { + sed -i -e 's/^\(SUBDIRS .*\)test/\1/g' Makefile.* + + # Upstream patches, will be in next release + epatch "${FILESDIR}/${P}-tracker-0.14.patch" # requires eautoreconf + + eautoreconf + + gnome2_src_prepare +} |