summaryrefslogtreecommitdiff
path: root/sci-misc/gato/gato-1.2.2.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'sci-misc/gato/gato-1.2.2.ebuild')
-rw-r--r--sci-misc/gato/gato-1.2.2.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/sci-misc/gato/gato-1.2.2.ebuild b/sci-misc/gato/gato-1.2.2.ebuild
deleted file mode 100644
index e78b0e32d1d0..000000000000
--- a/sci-misc/gato/gato-1.2.2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="tk(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Graph Animation Toolbox"
-HOMEPAGE="http://gato.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P^}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-S="${WORKDIR}/${P^}"
-
-python_prepare_all() {
- # change TKinter call to avoid crashing of X
- sed -i \
- -e 's:self.overrideredirect(1):self.overrideredirect(0):' \
- "${S}"/GatoDialogs.py || die "failed to patch GatoDialogs.py"
-
- distutils-r1_python_prepare_all
-}
-
-python_install_all() {
- distutils-r1_python_install_all
-
- # install data files
- insinto /usr/share/${PN}
- doins BFS.* DFS.* sample.cat
-}