sci-misc/gato: Remove EAPI=4 ebuild
authorDavid Seifert <soap@gentoo.org>
Sat, 24 Sep 2016 13:25:09 +0000 (15:25 +0200)
committerDavid Seifert <soap@gentoo.org>
Sat, 24 Sep 2016 13:30:47 +0000 (15:30 +0200)
Package-Manager: portage-2.3.1

sci-misc/gato/Manifest
sci-misc/gato/gato-1.1.2.ebuild [deleted file]

index 1d23d2c2330e3266a04bc198f0e8848f0a34ab2c..f2d4513dbc82686917a3d9284db626e98e663fde 100644 (file)
@@ -1,2 +1 @@
-DIST Gato-1.1.2.tar.gz 272060 SHA256 eb700c73cc411be70713d34a936da62fca9c0173f875dba636e726e47dbfcadd SHA512 a0567bc3ddb6060b713f3453f6a89d978da580c97ab28f094b90e82cfc584ba1cd459add0c5f2d32e746fc074ac78b2f3394d752a7bbdf14c8ccdd90b25e5008 WHIRLPOOL 024df3365c169a93cf2850ed571ad04a5e732f0bd3e535bd401881236acf8538aa673ba5dbc6bfa8b40dddab5737de1b863ea2d2029807631114be59c526c550
 DIST Gato-1.2.2.tar.gz 274369 SHA256 d353b8af72ad780f0301912f101ea528822d616bea717c7ca84eaeb0609fa42f SHA512 a628827b989f28817bcd427903d09f6571b3c2e571b57242d7c41562e558a00b278e87699565d16bf2584a0c8d33c07bf0a3c5113c9feeff417546a0a712c0c9 WHIRLPOOL 5eb369c6195ecff405e851a8e777a2b9469333031bc849ea03ad957d1370a99940e1887a6b4940a3fbf07968f8c4bed07e93e3c4ac835d72bb33000e9631b76a
diff --git a/sci-misc/gato/gato-1.1.2.ebuild b/sci-misc/gato/gato-1.1.2.ebuild
deleted file mode 100644 (file)
index 89d4077..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-PYTHON_DEPEND="2"
-PYTHON_USE_WITH="tk"
-
-inherit eutils python
-
-MYP="Gato-${PV}"
-
-DESCRIPTION="Graph Animation Toolbox"
-HOMEPAGE="http://gato.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MYP}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-S="${WORKDIR}/${MYP}"
-
-pkg_setup() {
-       python_set_active_version 2
-       python_pkg_setup
-}
-
-src_prepare() {
-       # 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"
-}
-
-src_install() {
-       # install python code
-       local instdir=$(python_get_sitedir)/${PN}
-       insinto ${instdir}
-       doins *.py
-       fperms 755 ${instdir}/{Gato,Gred}.py
-       python_convert_shebangs -r 2 "${ED}"
-
-       # create symlinks
-       dosym ${instdir}/Gato.py /usr/bin/gato
-       dosym ${instdir}/Gred.py /usr/bin/gred
-
-       # install data files
-       insinto /usr/share/${PN}
-       doins BFS.* DFS.* sample.cat
-}