diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-03-15 15:11:47 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-03-15 15:11:47 +0000 |
commit | 83af1c1ec6e75c7e80d5a280e34c56d8d3fd3bcf (patch) | |
tree | abd03c06acde013c665923a650c43d96ac691fd4 /xfce-extra/exo | |
parent | QA: Removed illegal use of ${ROOT}. Bug #168043 (diff) | |
download | gentoo-2-83af1c1ec6e75c7e80d5a280e34c56d8d3fd3bcf.tar.gz gentoo-2-83af1c1ec6e75c7e80d5a280e34c56d8d3fd3bcf.tar.bz2 gentoo-2-83af1c1ec6e75c7e80d5a280e34c56d8d3fd3bcf.zip |
Delete unused version.
(Portage version: 2.1.2.2)
Diffstat (limited to 'xfce-extra/exo')
-rw-r--r-- | xfce-extra/exo/exo-0.3.0-r2.ebuild | 28 | ||||
-rw-r--r-- | xfce-extra/exo/files/digest-exo-0.3.0-r2 | 3 | ||||
-rw-r--r-- | xfce-extra/exo/files/exo-0.3.0-pygtk.patch | 68 |
3 files changed, 0 insertions, 99 deletions
diff --git a/xfce-extra/exo/exo-0.3.0-r2.ebuild b/xfce-extra/exo/exo-0.3.0-r2.ebuild deleted file mode 100644 index 17afef91a2f5..000000000000 --- a/xfce-extra/exo/exo-0.3.0-r2.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/exo/exo-0.3.0-r2.ebuild,v 1.6 2007/03/03 13:40:03 nixnut Exp $ - -inherit eutils xfce42 - -DESCRIPTION="Extension library for Xfce" -HOMEPAGE="http://www.os-cillation.com/" -KEYWORDS="~amd64 ~arm ~ia64 ppc ppc64 ~sparc x86" - -RDEPEND="x11-libs/libX11 - x11-libs/libICE - x11-libs/libSM - >=x11-libs/gtk+-2.4 - >=xfce-base/libxfce4mcs-4.2.2-r1 - >=xfce-base/libxfcegui4-4.2" -DEPEND="${RDEPEND} - x11-libs/libX11 - x11-libs/libXt" - -bzipped -goodies - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-pygtk.patch -} diff --git a/xfce-extra/exo/files/digest-exo-0.3.0-r2 b/xfce-extra/exo/files/digest-exo-0.3.0-r2 deleted file mode 100644 index 1fbbcd1fcc49..000000000000 --- a/xfce-extra/exo/files/digest-exo-0.3.0-r2 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 ffcd73ec6b34f19c81afdc3f1a97377b exo-0.3.0.tar.bz2 387737 -RMD160 328c28fa865a47fd7ce826d7ae27e3a3add61a76 exo-0.3.0.tar.bz2 387737 -SHA256 77f27ac51bb490018f553d01300950f4bc83cfe98c44114ea0a331a0606c3382 exo-0.3.0.tar.bz2 387737 diff --git a/xfce-extra/exo/files/exo-0.3.0-pygtk.patch b/xfce-extra/exo/files/exo-0.3.0-pygtk.patch deleted file mode 100644 index b530bca84f1b..000000000000 --- a/xfce-extra/exo/files/exo-0.3.0-pygtk.patch +++ /dev/null @@ -1,68 +0,0 @@ -diff -ur exo-0.3.0.orig/python/exo.override exo-0.3.0/python/exo.override ---- exo-0.3.0.orig/python/exo.override 2005-03-02 08:47:40.000000000 -0600 -+++ exo-0.3.0/python/exo.override 2007-01-08 09:44:17.000000000 -0600 -@@ -27,8 +27,13 @@ - #include <pygtk/pygtk.h> - #include <exo/exo.h> - -+#if !defined(pygtk_tree_path_from_pyobject) - extern GtkTreePath *pygtk_tree_path_from_pyobject (PyObject *object); -+#endif -+ -+#if !defined(pygtk_tree_path_to_pyobject) - extern PyObject *pygtk_tree_path_to_pyobject (GtkTreePath *path); -+#endif - - %% - modulename exo -diff -ur exo-0.3.0.orig/python/exomodule.c exo-0.3.0/python/exomodule.c ---- exo-0.3.0.orig/python/exomodule.c 2005-02-21 14:24:37.000000000 -0600 -+++ exo-0.3.0/python/exomodule.c 2007-01-08 09:49:24.000000000 -0600 -@@ -34,21 +34,8 @@ - * that are required for the IconView, so we have to duplicate - * them here. - */ --PyObject* --pygtk_tree_path_to_pyobject (GtkTreePath *path) --{ -- gint len, i, *indices; -- PyObject *ret; -- -- len = gtk_tree_path_get_depth (path); -- indices = gtk_tree_path_get_indices (path); -- -- ret = PyTuple_New (len); -- for (i = 0; i < len; i++) -- PyTuple_SetItem (ret, i, PyInt_FromLong (indices[i])); -- return ret; --} - -+#if !defined(pygtk_tree_path_from_pyobject) - GtkTreePath* - pygtk_tree_path_from_pyobject (PyObject *object) - { -@@ -96,7 +83,24 @@ - - return NULL; - } -+#endif - -+#if !defined(pygtk_tree_path_to_pyobject) -+PyObject* -+pygtk_tree_path_to_pyobject (GtkTreePath *path) -+{ -+ gint len, i, *indices; -+ PyObject *ret; -+ -+ len = gtk_tree_path_get_depth (path); -+ indices = gtk_tree_path_get_indices (path); -+ -+ ret = PyTuple_New (len); -+ for (i = 0; i < len; i++) -+ PyTuple_SetItem (ret, i, PyInt_FromLong (indices[i])); -+ return ret; -+} -+#endif - - DL_EXPORT(void) - init_exo (void) |