summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFernando Serboncini <fserb@gentoo.org>2005-01-31 03:35:46 +0000
committerFernando Serboncini <fserb@gentoo.org>2005-01-31 03:35:46 +0000
commit5bb34fe36793379b9d7f26e163d930239270a892 (patch)
tree85b9c447513a544a7a57a91f6faa74d882ed03b6 /x11-libs/vte/files
parentinherit eutils (diff)
downloadgentoo-2-5bb34fe36793379b9d7f26e163d930239270a892.tar.gz
gentoo-2-5bb34fe36793379b9d7f26e163d930239270a892.tar.bz2
gentoo-2-5bb34fe36793379b9d7f26e163d930239270a892.zip
Fixed python binding. Closes #61683
(Portage version: 2.0.51-r15)
Diffstat (limited to 'x11-libs/vte/files')
-rw-r--r--x11-libs/vte/files/vte-0.11.11-vtemodule.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/x11-libs/vte/files/vte-0.11.11-vtemodule.patch b/x11-libs/vte/files/vte-0.11.11-vtemodule.patch
new file mode 100644
index 000000000000..7bfce8f79728
--- /dev/null
+++ b/x11-libs/vte/files/vte-0.11.11-vtemodule.patch
@@ -0,0 +1,19 @@
+--- python/vtemodule.c.orig 2005-01-27 12:22:41.699091592 +0100
++++ python/vtemodule.c 2005-01-27 12:29:47.038430184 +0100
+@@ -32,14 +32,14 @@
+ extern PyTypeObject PyVteTerminal_Type;
+
+ DL_EXPORT(void)
+-init_vte(void)
++initvte(void)
+ {
+ PyObject *m, *d;
+
+ init_pygobject();
+ init_pygtk();
+
+- m = Py_InitModule("_vte", pyvte_functions);
++ m = Py_InitModule("vte", pyvte_functions);
+ d = PyModule_GetDict(m);
+
+ pyvte_register_classes(d);