summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-11-23 19:14:27 +0100
committerMichał Górny <mgorny@gentoo.org>2019-11-23 19:18:53 +0100
commit62b2df73b1e9d9f70101f00443c84dce79475e40 (patch)
tree84ab44d61290f73cd21afcbe4392ca21285ca2b7 /dev-tcltk
parentdev-tcltk/scwoop: Drop EAPI 0 ebuild (diff)
downloadgentoo-62b2df73b1e9d9f70101f00443c84dce79475e40.tar.gz
gentoo-62b2df73b1e9d9f70101f00443c84dce79475e40.tar.bz2
gentoo-62b2df73b1e9d9f70101f00443c84dce79475e40.zip
dev-tcltk/tkcon: Drop EAPI 0 ebuild
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-tcltk')
-rw-r--r--dev-tcltk/tkcon/tkcon-2.5.ebuild31
1 files changed, 0 insertions, 31 deletions
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
-}