diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-12-26 15:09:38 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-12-26 15:20:33 +0100 |
commit | 316399e0a2aa8f6bb6c2f2f7d1bd8e6300a873b4 (patch) | |
tree | a1f05e61f7151c078a2c766487a7cfb7248fb4ac /media-plugins/grilo-plugins/grilo-plugins-0.2.17.ebuild | |
parent | media-libs/grilo: Version bump (diff) | |
download | gentoo-316399e0a2aa8f6bb6c2f2f7d1bd8e6300a873b4.tar.gz gentoo-316399e0a2aa8f6bb6c2f2f7d1bd8e6300a873b4.tar.bz2 gentoo-316399e0a2aa8f6bb6c2f2f7d1bd8e6300a873b4.zip |
media-plugins/grilo-plugins: Version bump
Package-Manager: portage-2.2.26
Diffstat (limited to 'media-plugins/grilo-plugins/grilo-plugins-0.2.17.ebuild')
-rw-r--r-- | media-plugins/grilo-plugins/grilo-plugins-0.2.17.ebuild | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/media-plugins/grilo-plugins/grilo-plugins-0.2.17.ebuild b/media-plugins/grilo-plugins/grilo-plugins-0.2.17.ebuild new file mode 100644 index 000000000000..8fa3fd2dd98e --- /dev/null +++ b/media-plugins/grilo-plugins/grilo-plugins-0.2.17.ebuild @@ -0,0 +1,94 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +GCONF_DEBUG="no" # --enable-debug only changes CFLAGS +GNOME2_LA_PUNT="yes" + +inherit gnome2 + +DESCRIPTION="A framework for easy media discovery and browsing" +HOMEPAGE="https://wiki.gnome.org/Projects/Grilo" + +LICENSE="LGPL-2.1+" +SLOT="0.2" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="daap +dvd flickr freebox gnome-online-accounts lua subtitles thetvdb tracker upnp-av +vimeo +youtube" + +# Bump gom requirement to avoid segfaults +RDEPEND=" + >=dev-libs/glib-2.44:2 + >=media-libs/grilo-0.2.12:${SLOT}[network,playlist] + media-libs/libmediaart:2.0 + >=dev-libs/gom-0.3.1 + + dev-libs/gmime:2.6 + dev-libs/json-glib + dev-libs/libxml2:2 + dev-db/sqlite:3 + + daap? ( >=net-libs/libdmapsharing-2.9.12:3.0 ) + dvd? ( >=dev-libs/totem-pl-parser-3.4.1 ) + flickr? ( net-libs/liboauth ) + freebox? ( net-dns/avahi ) + gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.17.91 ) + lua? ( + >=dev-lang/lua-5.3 + app-arch/libarchive + dev-libs/libxml2:2 + >=dev-libs/totem-pl-parser-3.4.1 ) + subtitles? ( net-libs/libsoup:2.4 ) + thetvdb? ( + app-arch/libarchive + dev-libs/libxml2 ) + tracker? ( >=app-misc/tracker-0.10.5:= ) + youtube? ( + >=dev-libs/libgdata-0.9.1:= + >=dev-libs/totem-pl-parser-3.4.1 ) + upnp-av? ( + net-libs/libsoup:2.4 + net-libs/dleyna-connector-dbus ) + vimeo? ( + >=dev-libs/totem-pl-parser-3.4.1 ) +" +DEPEND="${RDEPEND} + app-text/docbook-xml-dtd:4.5 + app-text/yelp-tools + >=dev-util/intltool-0.40.0 + virtual/pkgconfig +" + +# FIXME: some unittests required python-dbusmock +src_configure() { + # --enable-debug only changes CFLAGS, useless for us + # Plugins + # shoutcast seems to be broken + gnome2_src_configure \ + --disable-static \ + --disable-debug \ + --disable-uninstalled \ + --enable-bookmarks \ + --enable-filesystem \ + --enable-gravatar \ + --enable-jamendo \ + --enable-localmetadata \ + --enable-magnatune \ + --enable-metadata-store \ + --enable-podcasts \ + --enable-raitv \ + --disable-shoutcast \ + --enable-tmdb \ + $(use_enable daap dmap) \ + $(use_enable dvd optical-media) \ + $(use_enable flickr) \ + $(use_enable freebox) \ + $(use_enable gnome-online-accounts goa) \ + $(use_enable lua lua-factory) \ + $(use_enable subtitles opensubtitles) \ + $(use_enable thetvdb) \ + $(use_enable tracker) \ + $(use_enable upnp-av dleyna) \ + $(use_enable vimeo) \ + $(use_enable youtube) +} |