summaryrefslogtreecommitdiff
path: root/devel/py-xdg/files
diff options
context:
space:
mode:
authorJeremy Messenger <mezz@FreeBSD.org>2004-06-26 00:41:43 +0000
committerJeremy Messenger <mezz@FreeBSD.org>2004-06-26 00:41:43 +0000
commitf4a4ca3ce61cfce87afca2fccb4b79ef459e2846 (patch)
treea7ce355e8d05cdd8d833ad3ffe3116903b29413d /devel/py-xdg/files
parentadd portaudit2vuxml.pl to easy the migration of entries to VuXML (diff)
A python library to access freedesktop.org standards.
Currently supported are: o Base Directory Specification o Menu Specification o Desktop Entry Specification o Icon Theme Specification WWW: http://freedesktop.org/Software/pyxdg PR: ports/68332 Submitted by: michael johnson <ahze@ahze.net>
Diffstat (limited to 'devel/py-xdg/files')
-rw-r--r--devel/py-xdg/files/patch-xdg::IconTheme.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/devel/py-xdg/files/patch-xdg::IconTheme.py b/devel/py-xdg/files/patch-xdg::IconTheme.py
new file mode 100644
index 000000000000..ebe012ed215e
--- /dev/null
+++ b/devel/py-xdg/files/patch-xdg::IconTheme.py
@@ -0,0 +1,13 @@
+--- xdg/IconTheme.py.orig Mon Mar 29 13:37:54 2004
++++ xdg/IconTheme.py Fri Jun 25 17:04:04 2004
+@@ -212,7 +212,9 @@
+ icondirs = []
+ for basedir in xdg_data_dirs:
+ icondirs.append(os.path.join(basedir, "icons"))
+-icondirs.append("/usr/share/pixmaps")
++icondirs.append("%%X11BASE%%/share/gnome/pixmaps")
++icondirs.append("%%X11BASE%%/share/icons")
++icondirs.append("%%LOCALBASE%%/share/icons")
+ icondirs.append(os.path.expanduser("~/.icons"))
+
+ # just cache variables, they give a 10x speed improvement