diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-06-30 12:29:54 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-06-30 12:29:54 +0000 |
commit | 5f835a5987743b73532f1e59f66effbfb2b6935b (patch) | |
tree | 120cb22536885776d0855021ae4fd214811cdd19 /app-editors/gedit-plugins | |
parent | Bump to 1.11, thanks to slepnoga (diff) | |
download | gentoo-2-5f835a5987743b73532f1e59f66effbfb2b6935b.tar.gz gentoo-2-5f835a5987743b73532f1e59f66effbfb2b6935b.tar.bz2 gentoo-2-5f835a5987743b73532f1e59f66effbfb2b6935b.zip |
Offending files are only installed with USE python (#515842 by Ilya Gordeev)
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'app-editors/gedit-plugins')
-rw-r--r-- | app-editors/gedit-plugins/ChangeLog | 5 | ||||
-rw-r--r-- | app-editors/gedit-plugins/gedit-plugins-3.12.1.ebuild | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/app-editors/gedit-plugins/ChangeLog b/app-editors/gedit-plugins/ChangeLog index 49978464bd8f..72471e867a22 100644 --- a/app-editors/gedit-plugins/ChangeLog +++ b/app-editors/gedit-plugins/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/gedit-plugins # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit-plugins/ChangeLog,v 1.46 2014/04/27 15:35:32 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit-plugins/ChangeLog,v 1.47 2014/06/30 12:29:54 pacho Exp $ + + 30 Jun 2014; Pacho Ramos <pacho@gentoo.org> gedit-plugins-3.12.1.ebuild: + Offending files are only installed with USE python (#515842 by Ilya Gordeev) *gedit-plugins-3.12.1 (27 Apr 2014) diff --git a/app-editors/gedit-plugins/gedit-plugins-3.12.1.ebuild b/app-editors/gedit-plugins/gedit-plugins-3.12.1.ebuild index ce71f03513d7..94aeeba2d687 100644 --- a/app-editors/gedit-plugins/gedit-plugins-3.12.1.ebuild +++ b/app-editors/gedit-plugins/gedit-plugins-3.12.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit-plugins/gedit-plugins-3.12.1.ebuild,v 1.1 2014/04/27 15:35:32 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit-plugins/gedit-plugins-3.12.1.ebuild,v 1.2 2014/06/30 12:29:54 pacho Exp $ EAPI="5" GCONF_DEBUG="no" @@ -64,8 +64,10 @@ src_install() { gnome2_src_install # FIXME: crazy !!! - find "${ED}"/usr/share/gedit -name "*.py*" -delete || die - find "${ED}"/usr/share/gedit -type d -empty -delete || die + if use python; then + find "${ED}"/usr/share/gedit -name "*.py*" -delete || die + find "${ED}"/usr/share/gedit -type d -empty -delete || die + fi # FIXME: upstream made this automagic... clean_plugin charmap |