From: Michał Górny Date: Sat, 23 Nov 2019 18:14:27 +0000 (+0100) Subject: dev-tcltk/tkcon: Drop EAPI 0 ebuild X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=62b2df73b1e9d9f70101f00443c84dce79475e40;p=gentoo.git dev-tcltk/tkcon: Drop EAPI 0 ebuild Signed-off-by: Michał Górny --- diff --git a/dev-tcltk/tkcon/tkcon-2.5.ebuild b/dev-tcltk/tkcon/tkcon-2.5.ebuild deleted file mode 100644 index dcf14a871f2d..000000000000 --- a/dev-tcltk/tkcon/tkcon-2.5.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils multilib - -DESCRIPTION="Tk GUI console" -HOMEPAGE="http://tkcon.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -KEYWORDS="~amd64 ~ppc ~x86" -SLOT="0" -IUSE="doc" - -DEPEND="dev-lang/tk" -RDEPEND="${DEPEND}" - -src_install() { - local tclver="$(echo 'puts $tcl_version' | tclsh)" - local instdir=/usr/$(get_libdir)/tcl${tclver}/${PN}2.5 - dodir ${instdir} - cp -pP pkgIndex.tcl tkcon.tcl "${D}"${instdir} || die - dodir /usr/bin - dosym ${instdir}/tkcon.tcl /usr/bin/tkcon - dodoc README.txt - if use doc; then - dohtml doc/* - fi -}