aboutsummaryrefslogtreecommitdiff
path: root/system/guake/guake-3.8.5-fix-paths.patch
diff options
context:
space:
mode:
authorLogan Rathbone <poprocks@gmail.com>2022-02-06 20:49:32 -0500
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2022-02-07 09:36:20 +0700
commite0444e9fcb7616af2eb6d7ddc290a766ff00c58b (patch)
tree777c4013bf29040a867db0530c5383ae058d25fe /system/guake/guake-3.8.5-fix-paths.patch
parentbc9acb693c32ac233b5c72dc1a28c0be79829c89 (diff)
system/guake: Updated for version 3.8.5.
- Remove deps; none needed for Slackware 15.0. - Update fix-paths patch to make 3.8.5 run on Slackware 15.0. Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/guake/guake-3.8.5-fix-paths.patch')
-rw-r--r--system/guake/guake-3.8.5-fix-paths.patch47
1 files changed, 47 insertions, 0 deletions
diff --git a/system/guake/guake-3.8.5-fix-paths.patch b/system/guake/guake-3.8.5-fix-paths.patch
new file mode 100644
index 0000000000000..02284ad68385f
--- /dev/null
+++ b/system/guake/guake-3.8.5-fix-paths.patch
@@ -0,0 +1,47 @@
+--- guake/paths.py.orig 2022-02-06 15:09:08.000000000 -0500
++++ guake/paths.py 2022-02-06 20:42:24.476974008 -0500
+@@ -47,37 +47,37 @@
+
+
+ def get_default_data_dir():
+- d = os.path.join(get_data_files_dir(), "data")
++ d = '/usr/share/guake/data'
+ log.debug("Using guake data directory: %s", d)
+ return d
+
+
+ def get_default_locale_dir():
+- d = os.path.join(get_data_files_dir(), "po")
+- log.debug("Using guake image directory: %s", d)
++ d = '/usr/share/locale'
++ log.debug("Using guake locale directory: %s", d)
+ return d
+
+
+ def get_default_image_dir():
+- d = os.path.join(get_default_data_dir(), 'pixmaps')
++ d = '/usr/share/guake/pixmaps'
+ log.debug("Using guake image directory: %s", d)
+ return d
+
+
+ def get_default_glade_dir():
+- d = get_default_data_dir()
++ d = '/usr/share/guake'
+ log.debug("Using guake glade directory: %s", d)
+ return d
+
+
+ def get_default_schema_dir():
+- d = get_default_data_dir()
++ d = '/usr/share/glib-2.0/schemas'
+ log.debug("Using guake scheme directory: %s", d)
+ return d
+
+
+ def get_default_theme_dir():
+- d = os.path.join(get_default_data_dir(), 'theme')
++ d = '/usr/share/guake/theme'
+ log.debug("Using guake theme directory: %s", d)
+ return d
+