blob: d61fef5199883d6d980473d9fb102a04a72a9f5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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
}
|