diff options
Diffstat (limited to 'x11/xcurs/files')
-rw-r--r-- | x11/xcurs/files/patch-gladew.py | 24 | ||||
-rw-r--r-- | x11/xcurs/files/patch-xcurs.py | 24 |
2 files changed, 0 insertions, 48 deletions
diff --git a/x11/xcurs/files/patch-gladew.py b/x11/xcurs/files/patch-gladew.py deleted file mode 100644 index fa2241d7bc5e..000000000000 --- a/x11/xcurs/files/patch-gladew.py +++ /dev/null @@ -1,24 +0,0 @@ ---- gladew.py.orig Mon Dec 27 11:44:55 2004 -+++ gladew.py Mon Dec 27 11:44:39 2004 -@@ -2,7 +2,11 @@ - pygtk.require('2.0') - import gtk.glade - import gobject --import new, types -+import os, sys, new, types -+ -+def find_datafile(filename): -+ prefix = os.path.split(os.path.dirname(sys.argv[0]))[0] -+ return os.path.join(prefix, 'share', 'xcurs', filename) - - class GladeWidget: - #if we are doing instance counting, this holds the variable -@@ -13,7 +17,7 @@ - - #initialize variables - self.autoclose = autoclose -- self.widgets = gtk.glade.XML(glade_file, widget_name) -+ self.widgets = gtk.glade.XML(find_datafile(glade_file), widget_name) - callbacks = {} - - #find and store methods as bound callbacks diff --git a/x11/xcurs/files/patch-xcurs.py b/x11/xcurs/files/patch-xcurs.py deleted file mode 100644 index 4b2b3e1f7513..000000000000 --- a/x11/xcurs/files/patch-xcurs.py +++ /dev/null @@ -1,24 +0,0 @@ ---- xcurs.py.orig Wed Sep 1 03:50:28 2004 -+++ xcurs.py Mon Dec 27 11:24:46 2004 -@@ -1,6 +1,10 @@ - #!/usr/bin/python -OO - --import sys, re -+import os, sys, re -+ -+prefix = os.path.split(os.path.dirname(sys.argv[0]))[0] -+sys.path.append(os.path.join(prefix, 'lib', 'xcurs')) -+ - import pygtk - pygtk.require('2.0') - import gtk.glade -@@ -8,7 +12,7 @@ - import gladew --import Image -+from PIL import Image - --import os, new, types -+import new, types - - # for xcurs - # import parsexcursor |