summaryrefslogtreecommitdiff
path: root/dev-tcltk/tcllib/tcllib-1.19.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'dev-tcltk/tcllib/tcllib-1.19.ebuild')
-rw-r--r--dev-tcltk/tcllib/tcllib-1.19.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/dev-tcltk/tcllib/tcllib-1.19.ebuild b/dev-tcltk/tcllib/tcllib-1.19.ebuild
deleted file mode 100644
index 65788cd56872..000000000000
--- a/dev-tcltk/tcllib/tcllib-1.19.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit virtualx
-
-DESCRIPTION="Tcl Standard Library"
-HOMEPAGE="https://www.tcl.tk/software/tcllib/"
-SRC_URI="mirror://sourceforge/${PN}/${PN}/${PV}/${P}.tar.xz"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="examples"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-lang/tcl:0=
- dev-tcltk/tdom
- "
-DEPEND="${RDEPEND}"
-
-DOCS=(
- ChangeLog DESCRIPTION.txt README-1.19.txt README.developer
- devdoc/critcl-tcllib.txt devdoc/dirlayout_install.txt
- devdoc/indexing.txt devdoc/installation.txt
-)
-HTML_DOCS=( devdoc/devguide.html devdoc/releaseguide.html )
-
-PATCHES=( "${FILESDIR}"/${P}-test.patch )
-
-src_prepare() {
- default
- if has_version ">=dev-lang/tcl-8.6.9"; then
- sed -i \
- -e "s|::hook::call|call|" \
- -e "s|::string::token::shell|shell|" \
- "${S}"/modules/hook/hook.test \
- "${S}"/modules/string/token_shell.test \
- || die
- fi
-}
-
-src_test() {
- USER= virtx emake test_batch
-}
-
-src_install() {
- default
-
- if use examples ; then
- for f in $(find examples -type f); do
- docinto $(dirname $f)
- dodoc $f
- done
- fi
-}