summaryrefslogtreecommitdiff
path: root/x11-terms/terminator/files/terminator-1.91-without-icon-cache.patch
blob: c924de3607f539bb31dd775da16737c41c4fbcec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)