commit: a06ab28bd32dba23bc6ce9ece5b088a5ffed4419 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Sat Jun 22 18:04:50 2024 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Sat Jun 22 18:52:19 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a06ab28b
app-text/tkinfo: add 2.8 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/37249 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> app-text/tkinfo/Manifest | 1 + app-text/tkinfo/tkinfo-2.11.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/app-text/tkinfo/Manifest b/app-text/tkinfo/Manifest index a4575ec04611..38cd2d7098d4 100644 --- a/app-text/tkinfo/Manifest +++ b/app-text/tkinfo/Manifest @@ -1 +1,2 @@ +DIST tkinfo-2.11.tar.gz 56332 BLAKE2B 7242b27555b0075d14a716e1964ce9cc9c9fb03bb8b3f5f93bfa4f7a613321781a2106604f0ca31e9acbd91413cb418b5a2d38453d88cdf73d0c9d4e45b9ef12 SHA512 69568e441a56f51dc136df5c58343c464b23e7577a64a9e44edd0dd5704e95299e3827e0704a953b9a56e2a642ac69324256ac477752d51e1060b259a69380e5 DIST tkinfo-2.8.tar.gz 56234 BLAKE2B 6351a8c3ee46092a5c46db147006cb462882cc9abec11f49f07f4f4b50888be6537625a0756a8f05837c21d769345e39837f650ad3a6488713adc304880a3674 SHA512 dfce278a1b33eebcebe3f6f9b5885a8c247f3181d154bc35d8b6d894f1f33043e9e40dd4c8dc336fa100700883295e8a648bece6f04ee556d4fa2f69adaecb76 diff --git a/app-text/tkinfo/tkinfo-2.11.ebuild b/app-text/tkinfo/tkinfo-2.11.ebuild new file mode 100644 index 000000000000..529b014dd1fe --- /dev/null +++ b/app-text/tkinfo/tkinfo-2.11.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Info Browser in TK" +HOMEPAGE="http://math-www.uni-paderborn.de/~axel/tkinfo/" +SRC_URI="http://math-www.uni-paderborn.de/~axel/${PN}/${P}.tar.gz" + +LICENSE="Old-MIT GPL-1+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86" + +RDEPEND="dev-lang/tk" + +src_prepare() { + default + sed -e "1 s:^.*:#!/usr/bin/env wish:" \ + -i tkinfo || die "sed tkinfo failed" +} + +src_install() { + dobin tkinfo + doman tkinfo.1 +}
