Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/tkinfo/
Date: Fri, 27 May 2016 22:26:31
Message-Id: 1464386308.bc6667bdd40395958f362023ee0b5a2c43914c0b.monsieurp@gentoo
1 commit: bc6667bdd40395958f362023ee0b5a2c43914c0b
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 27 21:57:34 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri May 27 21:58:28 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc6667bd
7
8 app-text/tkinfo: EAPI 6 bump.
9
10 Package-Manager: portage-2.2.28
11
12 app-text/tkinfo/tkinfo-2.8-r1.ebuild | 30 ++++++++++++++++++++++++++++++
13 1 file changed, 30 insertions(+)
14
15 diff --git a/app-text/tkinfo/tkinfo-2.8-r1.ebuild b/app-text/tkinfo/tkinfo-2.8-r1.ebuild
16 new file mode 100644
17 index 0000000..e1349f9
18 --- /dev/null
19 +++ b/app-text/tkinfo/tkinfo-2.8-r1.ebuild
20 @@ -0,0 +1,30 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +DESCRIPTION="Info Browser in TK"
28 +HOMEPAGE="http://math-www.uni-paderborn.de/~axel/tkinfo/"
29 +SRC_URI="http://math-www.uni-paderborn.de/~axel/tkinfo/${P}.tar.gz"
30 +
31 +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
32 +IUSE=""
33 +LICENSE="freedist"
34 +SLOT="0"
35 +
36 +RDEPEND="dev-lang/tk"
37 +DEPEND="sys-apps/sed"
38 +
39 +src_prepare() {
40 + default
41 + sed -i \
42 + -e "1 s:^.*:#!/usr/bin/wish:" tkinfo || \
43 + die "sed tkinfo failed"
44 +}
45 +
46 +src_install () {
47 + dobin "${PN}"
48 + doman "${PN}.1"
49 + dodoc README
50 +}