summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Sokolov <sokolov@google.com>2020-03-03 01:08:52 +0000
committerPatrick McLean <chutzpah@gentoo.org>2020-04-30 16:18:40 -0700
commit53f47bd928f3b470b69a3bfbf44d318dec4e1a6a (patch)
tree3cbff46e212085abc733179dd8c5220da6f7487a /x11-terms/terminator/files
parentdev-python/libtmux-0.8.2-r2: re-add dropped ~arm keyword (diff)
downloadgentoo-53f47bd928f3b470b69a3bfbf44d318dec4e1a6a.tar.gz
gentoo-53f47bd928f3b470b69a3bfbf44d318dec4e1a6a.tar.bz2
gentoo-53f47bd928f3b470b69a3bfbf44d318dec4e1a6a.zip
x11-terms/terminator: bump version, support py3
Some notes: * I replaced gnome2 with xdg because gnome2 doesn't work with EAPI 7. I don't know whether the rest of things gnome2 eclass did is important. * I put myself to maintainer because Andreas Sturmlechner told me to. It seems to work, and the test passes. Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Alexey Sokolov <sokolov@google.com> Closes: https://bugs.gentoo.org/716446 Closes: https://github.com/gentoo/gentoo/pull/14826 Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
Diffstat (limited to 'x11-terms/terminator/files')
-rw-r--r--x11-terms/terminator/files/terminator-1.91-without-icon-cache.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/x11-terms/terminator/files/terminator-1.91-without-icon-cache.patch b/x11-terms/terminator/files/terminator-1.91-without-icon-cache.patch
new file mode 100644
index 000000000000..c924de3607f5
--- /dev/null
+++ b/x11-terms/terminator/files/terminator-1.91-without-icon-cache.patch
@@ -0,0 +1,16 @@
+Without this patch, terminator's build script runs gtk-update-icon-cache which
+causes terminator package to claim /usr/share/icons/hicolor/icon-theme.cache as
+its own. To avoid that, gtk-update-icon-cache is run later, as part of
+xdg_pkg_postinst in the ebuild.
+
+--- a/setup.py 2009-08-12 22:22:53.000000000 -0400
++++ b/setup.py 2009-08-12 22:22:57.000000000 -0400
+@@ -25,7 +25,7 @@
+
+ def __init__ (self, *args):
+ self.without_gettext = False
+- self.without_icon_cache = False
++ self.without_icon_cache = True
+ Distribution.__init__(self, *args)
+
+