diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-05-29 21:46:04 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-05-29 21:46:04 +0000 |
commit | 45f9c5c9d963ae031756497906fadb825325757d (patch) | |
tree | 3df662f7334731ed0f9f60458ec5e162f069f53e /sci-misc | |
parent | Remove old. (diff) | |
download | gentoo-2-45f9c5c9d963ae031756497906fadb825325757d.tar.gz gentoo-2-45f9c5c9d963ae031756497906fadb825325757d.tar.bz2 gentoo-2-45f9c5c9d963ae031756497906fadb825325757d.zip |
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'sci-misc')
-rw-r--r-- | sci-misc/gato/ChangeLog | 7 | ||||
-rw-r--r-- | sci-misc/gato/gato-1.02.ebuild | 61 |
2 files changed, 5 insertions, 63 deletions
diff --git a/sci-misc/gato/ChangeLog b/sci-misc/gato/ChangeLog index f2bbe0ee345c..6015956384fc 100644 --- a/sci-misc/gato/ChangeLog +++ b/sci-misc/gato/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-misc/gato -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/gato/ChangeLog,v 1.15 2012/09/16 16:07:37 jlec Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/gato/ChangeLog,v 1.16 2015/05/29 21:46:04 mrueg Exp $ + + 29 May 2015; Manuel Rüger <mrueg@gentoo.org> -gato-1.02.ebuild: + Remove old. 16 Sep 2012; Justin Lecher <jlec@gentoo.org> gato-1.1.2.ebuild, metadata.xml: Require tk support in python, #435036 diff --git a/sci-misc/gato/gato-1.02.ebuild b/sci-misc/gato/gato-1.02.ebuild deleted file mode 100644 index 44b2fbf40560..000000000000 --- a/sci-misc/gato/gato-1.02.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/gato/gato-1.02.ebuild,v 1.1 2010/06/24 12:51:38 jlec Exp $ - -EAPI="3" - -PYTHON_DEPEND="2" -PYTHON_USE_WITH="tk" - -inherit eutils python - -MY_PN="Gato" -MY_PV=$(echo ${PV} | tr '[:lower:]' '[:upper:]') - -DESCRIPTION="Graph Animation Toolbox" -HOMEPAGE="http://gato.sourceforge.net/" -SRC_URI="http://gato.sourceforge.net/Download/${MY_PN}-${MY_PV}.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -S="${WORKDIR}/${MY_PN}" - -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 || die "Failed to install python files" - fperms 755 ${instdir}/{Gato,Gred}.py - python_convert_shebangs -r 2 "${ED}" - - # create symlinks - dosym ${instdir}/Gato.py /usr/bin/gato || die - dosym ${instdir}/Gred.py /usr/bin/gred || die - - # install data files - insinto /usr/share/${PN} - doins BFS.* DFS.* sample.cat || die "failed to data files" -} - -pkg_postinst() { - python_mod_optimize ${PN} -} - -pkg_postrm() { - python_mod_cleanup ${PN} -} |