From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E81921381FB for ; Wed, 26 Dec 2012 22:09:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AED0121C02A; Wed, 26 Dec 2012 22:09:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F2AF021C02A for ; Wed, 26 Dec 2012 22:09:39 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0C7AF33D7E7 for ; Wed, 26 Dec 2012 22:09:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 9BA5CE543D for ; Wed, 26 Dec 2012 22:09:37 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1356559303.cdda649fc740888fc07863ad134fb0721f4a4cc9.eva@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: media-gfx/eog-plugins/ X-VCS-Repository: proj/gnome X-VCS-Files: media-gfx/eog-plugins/eog-plugins-3.6.1.ebuild X-VCS-Directories: media-gfx/eog-plugins/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: cdda649fc740888fc07863ad134fb0721f4a4cc9 X-VCS-Branch: master Date: Wed, 26 Dec 2012 22:09:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: cef9bb76-ea25-4837-a80e-92e3153afb8b X-Archives-Hash: 547fdb3d032fea9367cb874e9d5ae841 commit: cdda649fc740888fc07863ad134fb0721f4a4cc9 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Wed Dec 26 22:01:43 2012 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Wed Dec 26 22:01:43 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=cdda649f media-gfx/eog-plugins: moved to gx86 --- media-gfx/eog-plugins/eog-plugins-3.6.1.ebuild | 83 ------------------------ 1 files changed, 0 insertions(+), 83 deletions(-) diff --git a/media-gfx/eog-plugins/eog-plugins-3.6.1.ebuild b/media-gfx/eog-plugins/eog-plugins-3.6.1.ebuild deleted file mode 100644 index 4f619cc..0000000 --- a/media-gfx/eog-plugins/eog-plugins-3.6.1.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="4" -GCONF_DEBUG="no" -GNOME2_LA_PUNT="yes" -PYTHON_DEPEND="python? 2:2.5" - -inherit gnome2 python - -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 )" - -RDEPEND=" - >=dev-libs/glib-2.26:2 - >=dev-libs/libpeas-0.7.4 - >=media-gfx/eog-3.5.5 - x11-libs/gtk+: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? ( - dev-libs/libpeas[gtk,python] - dev-python/pygobject:3 - 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() { - if use python; then - python_set_active_version 2 - python_pkg_setup - fi -} - -src_prepare() { - gnome2_src_prepare - use python && python_clean_py-compile_files -} - -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" - G2CONF="${G2CONF} - $(use_enable python) - --with-plugins=${plugins}" - gnome2_src_configure -} - -pkg_postinst() { - gnome2_pkg_postinst - if use python; then - python_need_rebuild - python_mod_optimize /usr/$(get_libdir)/eog/plugins - fi -} - -pkg_postrm() { - gnome2_pkg_postrm - use python && python_mod_cleanup /usr/$(get_libdir)/eog/plugins -}