diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-12-24 17:20:47 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-12-24 17:20:47 +0000 |
commit | 514cf031faf58358ac98b47d44149a5bae811cc3 (patch) | |
tree | c75c3ec11dd524974b9deafb69da85cb5313a1ba /media-gfx/eog-plugins/eog-plugins-3.10.1.ebuild | |
parent | add myself as maintainer (diff) | |
download | historical-514cf031faf58358ac98b47d44149a5bae811cc3.tar.gz historical-514cf031faf58358ac98b47d44149a5bae811cc3.tar.bz2 historical-514cf031faf58358ac98b47d44149a5bae811cc3.zip |
Version bump for Gnome 3.10
Package-Manager: portage-2.2.7/cvs/Linux x86_64
Manifest-Sign-Key: 0xA188FBD4
Diffstat (limited to 'media-gfx/eog-plugins/eog-plugins-3.10.1.ebuild')
-rw-r--r-- | media-gfx/eog-plugins/eog-plugins-3.10.1.ebuild | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/media-gfx/eog-plugins/eog-plugins-3.10.1.ebuild b/media-gfx/eog-plugins/eog-plugins-3.10.1.ebuild new file mode 100644 index 000000000000..b599b0bc5eea --- /dev/null +++ b/media-gfx/eog-plugins/eog-plugins-3.10.1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/eog-plugins/eog-plugins-3.10.1.ebuild,v 1.1 2013/12/24 17:17:45 pacho Exp $ + +EAPI="5" +GCONF_DEBUG="no" +GNOME2_LA_PUNT="yes" +PYTHON_COMPAT=( python2_{6,7} ) + +inherit gnome2 python-single-r1 + +DESCRIPTION="Eye of GNOME plugins" +HOMEPAGE="https://live.gnome.org/EyeOfGnome/Plugins" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+exif +flickr map +picasa +python" +REQUIRED_USE=" + map? ( exif ) + python? ( ${PYTHON_REQUIRED_USE} )" + +RDEPEND=" + >=dev-libs/glib-2.32:2 + >=dev-libs/libpeas-0.7.4:= + >=media-gfx/eog-3.9.1 + >=x11-libs/gtk+-3.3.8:3 + exif? ( >=media-libs/libexif-0.6.16 ) + flickr? ( media-gfx/postr ) + map? ( + media-libs/libchamplain:0.12[gtk] + >=media-libs/clutter-1.9.4:1.0 + >=media-libs/clutter-gtk-1.1.2:1.0 ) + picasa? ( >=dev-libs/libgdata-0.9.1:= ) + python? ( + ${PYTHON_DEPS} + dev-libs/libpeas:=[gtk,python,${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + gnome-base/gsettings-desktop-schemas + media-gfx/eog[introspection] + x11-libs/gtk+:3[introspection] + x11-libs/pango[introspection] ) +" +DEPEND="${RDEPEND} + >=dev-util/intltool-0.40 + sys-devel/gettext + virtual/pkgconfig +" + +pkg_setup() { + use python && python-single-r1_pkg_setup +} + +src_configure() { + local plugins="fit-to-width,send-by-mail,hide-titlebar,light-theme" + use exif && plugins="${plugins},exif-display" + use flickr && plugins="${plugins},postr" + use map && plugins="${plugins},map" + use picasa && plugins="${plugins},postasa" + use python && plugins="${plugins},slideshowshuffle,pythonconsole,fullscreenbg,export-to-folder" + gnome2_src_configure \ + $(use_enable python) \ + --with-plugins=${plugins} +} |