Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/tkman/
Date: Tue, 23 Nov 2021 23:18:54
Message-Id: 1637709524.c47fdcc36ce2a93af8ad40b208123ba541a59f8d.marecki@gentoo
1 commit: c47fdcc36ce2a93af8ad40b208123ba541a59f8d
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 23 23:16:17 2021 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 23 23:18:44 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c47fdcc3
7
8 app-text/tkman: update EAPI 5 -> 8
9
10 Now with actually working installation of the HTML manual!
11
12 Bug: https://bugs.gentoo.org/826394
13 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
14
15 app-text/tkman/tkman-2.2-r2.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
16 1 file changed, 38 insertions(+)
17
18 diff --git a/app-text/tkman/tkman-2.2-r2.ebuild b/app-text/tkman/tkman-2.2-r2.ebuild
19 new file mode 100644
20 index 000000000000..6db7c4e92700
21 --- /dev/null
22 +++ b/app-text/tkman/tkman-2.2-r2.ebuild
23 @@ -0,0 +1,38 @@
24 +# Copyright 1999-2021 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=8
28 +
29 +inherit desktop
30 +
31 +DESCRIPTION="Graphical, hypertex man and info page browser"
32 +HOMEPAGE="https://sourceforge.net/projects/tkman/"
33 +SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.gz"
34 +
35 +LICENSE="Artistic"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
38 +
39 +DEPEND="
40 + >=app-text/rman-3.1
41 + >=dev-lang/tcl-8.4:0
42 + >=dev-lang/tk-8.4:0
43 +"
44 +RDEPEND="${DEPEND}"
45 +
46 +PATCHES=(
47 + "${FILESDIR}"/${PN}-2.2-gentoo.diff \
48 + "${FILESDIR}"/${PN}-CVE-2008-5137.diff
49 +)
50 +
51 +src_install() {
52 + local DOCS=( ANNOUNCE-tkman.txt CHANGES README-tkman )
53 + local HTML_DOCS=( manual.html )
54 +
55 + dodir /usr/bin
56 + default
57 +
58 + doicon contrib/TkMan.gif
59 +
60 + domenu "${FILESDIR}"/tkman.desktop
61 +}