diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2016-01-03 17:22:28 +0100 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2016-01-03 17:24:45 +0100 |
commit | 8a17e208587aeb7b480b86f0ea608a236dbd6efd (patch) | |
tree | cc588b22e4842659cc94443a1d14be79676ce70c /gnome-extra/nautilus-sendto | |
parent | dev-python/autobahn: Bump (diff) | |
download | gentoo-8a17e208587aeb7b480b86f0ea608a236dbd6efd.tar.gz gentoo-8a17e208587aeb7b480b86f0ea608a236dbd6efd.tar.bz2 gentoo-8a17e208587aeb7b480b86f0ea608a236dbd6efd.zip |
gnome-extra/nautilus-sendto: do not require introspection, bug #561008
Package-Manager: portage-2.2.26
Diffstat (limited to 'gnome-extra/nautilus-sendto')
-rw-r--r-- | gnome-extra/nautilus-sendto/nautilus-sendto-3.8.2-r1.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
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 000000000000..6f57138e22ac --- /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 +} |