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 4D2381384B4 for ; Sun, 3 Jan 2016 16:25:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 96128E08A4; Sun, 3 Jan 2016 16:25:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 33498E08A4 for ; Sun, 3 Jan 2016 16:25:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EFFE133FE7D for ; Sun, 3 Jan 2016 16:24:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96F2EC7B for ; Sun, 3 Jan 2016 16:24:51 +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: <1451838285.8a17e208587aeb7b480b86f0ea608a236dbd6efd.eva@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/nautilus-sendto/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-extra/nautilus-sendto/nautilus-sendto-3.8.2-r1.ebuild X-VCS-Directories: gnome-extra/nautilus-sendto/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 8a17e208587aeb7b480b86f0ea608a236dbd6efd X-VCS-Branch: master Date: Sun, 3 Jan 2016 16:24:51 +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: 07ee1792-7106-4e15-a193-bc83ab646d1a X-Archives-Hash: eb811d9219d448ab96691b7f7a0f3284 commit: 8a17e208587aeb7b480b86f0ea608a236dbd6efd Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sun Jan 3 16:22:28 2016 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sun Jan 3 16:24:45 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a17e208 gnome-extra/nautilus-sendto: do not require introspection, bug #561008 Package-Manager: portage-2.2.26 .../nautilus-sendto-3.8.2-r1.ebuild | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnome-extra/nautilus-sendto/nautilus-sendto-3.8.2-r1.ebuild b/gnome-extra/nautilus-sendto/nautilus-sendto-3.8.2-r1.ebuild new file mode 100644 index 0000000..6f57138 --- /dev/null +++ b/gnome-extra/nautilus-sendto/nautilus-sendto-3.8.2-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +GCONF_DEBUG="yes" + +inherit gnome2 + +DESCRIPTION="A nautilus extension for sending files to locations" +HOMEPAGE="https://git.gnome.org/browse/nautilus-sendto/" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND=" + >=x11-libs/gtk+-2.90.3:3[X(+)] +" +DEPEND="${RDEPEND} + >=dev-util/gtk-doc-am-1.9 + >=dev-util/intltool-0.35 + sys-devel/gettext + virtual/pkgconfig +" +# Needed for eautoreconf +# >=gnome-base/gnome-common-0.12 + +src_prepare() { + gnome2_src_prepare + + # Does not require introspection at all, bug #561008 + sed -i -e 's/\(^ \+enable_introspection\)=yes/\1=no/' configure || die +}