Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/nautilus-sendto/
Date: Sun, 03 Jan 2016 16:25:03
Message-Id: 1451838285.8a17e208587aeb7b480b86f0ea608a236dbd6efd.eva@gentoo
1 commit: 8a17e208587aeb7b480b86f0ea608a236dbd6efd
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 3 16:22:28 2016 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 3 16:24:45 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a17e208
7
8 gnome-extra/nautilus-sendto: do not require introspection, bug #561008
9
10 Package-Manager: portage-2.2.26
11
12 .../nautilus-sendto-3.8.2-r1.ebuild | 35 ++++++++++++++++++++++
13 1 file changed, 35 insertions(+)
14
15 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
16 new file mode 100644
17 index 0000000..6f57138
18 --- /dev/null
19 +++ b/gnome-extra/nautilus-sendto/nautilus-sendto-3.8.2-r1.ebuild
20 @@ -0,0 +1,35 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI="5"
26 +GCONF_DEBUG="yes"
27 +
28 +inherit gnome2
29 +
30 +DESCRIPTION="A nautilus extension for sending files to locations"
31 +HOMEPAGE="https://git.gnome.org/browse/nautilus-sendto/"
32 +
33 +LICENSE="GPL-2+"
34 +SLOT="0"
35 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
36 +IUSE=""
37 +
38 +RDEPEND="
39 + >=x11-libs/gtk+-2.90.3:3[X(+)]
40 +"
41 +DEPEND="${RDEPEND}
42 + >=dev-util/gtk-doc-am-1.9
43 + >=dev-util/intltool-0.35
44 + sys-devel/gettext
45 + virtual/pkgconfig
46 +"
47 +# Needed for eautoreconf
48 +# >=gnome-base/gnome-common-0.12
49 +
50 +src_prepare() {
51 + gnome2_src_prepare
52 +
53 + # Does not require introspection at all, bug #561008
54 + sed -i -e 's/\(^ \+enable_introspection\)=yes/\1=no/' configure || die
55 +}