From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8810B13828B for ; Fri, 27 May 2016 22:26:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77F74141E5; Fri, 27 May 2016 22:26:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 25137141E5 for ; Fri, 27 May 2016 22:26:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E96C1340961 for ; Fri, 27 May 2016 22:26:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 63F45964 for ; Fri, 27 May 2016 22:26:24 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1464386308.bc6667bdd40395958f362023ee0b5a2c43914c0b.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/tkinfo/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/tkinfo/tkinfo-2.8-r1.ebuild X-VCS-Directories: app-text/tkinfo/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: bc6667bdd40395958f362023ee0b5a2c43914c0b X-VCS-Branch: master Date: Fri, 27 May 2016 22:26:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: cee97819-3957-4f56-96a2-17dd2d7d667e X-Archives-Hash: 9f2d1584a848aff44504d987c930d381 commit: bc6667bdd40395958f362023ee0b5a2c43914c0b Author: Patrice Clement gentoo org> AuthorDate: Fri May 27 21:57:34 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Fri May 27 21:58:28 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc6667bd app-text/tkinfo: EAPI 6 bump. Package-Manager: portage-2.2.28 app-text/tkinfo/tkinfo-2.8-r1.ebuild | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/app-text/tkinfo/tkinfo-2.8-r1.ebuild b/app-text/tkinfo/tkinfo-2.8-r1.ebuild new file mode 100644 index 0000000..e1349f9 --- /dev/null +++ b/app-text/tkinfo/tkinfo-2.8-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Info Browser in TK" +HOMEPAGE="http://math-www.uni-paderborn.de/~axel/tkinfo/" +SRC_URI="http://math-www.uni-paderborn.de/~axel/tkinfo/${P}.tar.gz" + +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86" +IUSE="" +LICENSE="freedist" +SLOT="0" + +RDEPEND="dev-lang/tk" +DEPEND="sys-apps/sed" + +src_prepare() { + default + sed -i \ + -e "1 s:^.*:#!/usr/bin/wish:" tkinfo || \ + die "sed tkinfo failed" +} + +src_install () { + dobin "${PN}" + doman "${PN}.1" + dodoc README +}