diff options
author | Michael Sterrett <msterret@gentoo.org> | 2003-08-25 07:03:35 +0000 |
---|---|---|
committer | Michael Sterrett <msterret@gentoo.org> | 2003-08-25 07:03:35 +0000 |
commit | 8ae83d4bf6905193b0d54592f18d6a4b29659a97 (patch) | |
tree | 4e34e8afa3255966452e02a1cdcea0ef8db9c04a /app-text/tkinfo | |
parent | version bump (diff) | |
download | gentoo-2-8ae83d4bf6905193b0d54592f18d6a4b29659a97.tar.gz gentoo-2-8ae83d4bf6905193b0d54592f18d6a4b29659a97.tar.bz2 gentoo-2-8ae83d4bf6905193b0d54592f18d6a4b29659a97.zip |
version bump
Diffstat (limited to 'app-text/tkinfo')
-rw-r--r-- | app-text/tkinfo/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/tkinfo/Manifest | 4 | ||||
-rw-r--r-- | app-text/tkinfo/files/digest-tkinfo-2.6 | 1 | ||||
-rw-r--r-- | app-text/tkinfo/tkinfo-2.6.ebuild | 29 |
4 files changed, 38 insertions, 3 deletions
diff --git a/app-text/tkinfo/ChangeLog b/app-text/tkinfo/ChangeLog index e21195e6f768..4509b8a905d2 100644 --- a/app-text/tkinfo/ChangeLog +++ b/app-text/tkinfo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/tkinfo # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/tkinfo/ChangeLog,v 1.6 2003/07/17 00:08:38 pylon Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/tkinfo/ChangeLog,v 1.7 2003/08/25 07:03:30 msterret Exp $ + +*tkinfo-2.6 (25 Aug 2003) + + 25 Aug 2003; Michael Sterrett <msterret@gentoo.org> tkinfo-2.6.ebuild: + version bump 17 Jul 2003; Lars Weiler <pylon@gentoo.org> tkinfo-2.5-r1.ebuild: Set ppc into KEYWORDS diff --git a/app-text/tkinfo/Manifest b/app-text/tkinfo/Manifest index c6468ec561fd..1543dc14fb10 100644 --- a/app-text/tkinfo/Manifest +++ b/app-text/tkinfo/Manifest @@ -1,5 +1,5 @@ -MD5 f1fb11f3119639f1f083b2d2750a012c ChangeLog 947 +MD5 0bfe754e319975aba0fc465a82d479d0 ChangeLog 1066 MD5 538ee51b4e169694b941ba1e1895834f tkinfo-2.5-r1.ebuild 717 -MD5 2b98fc9c07466d879eeaf0ab5ea219aa tkinfo-2.6.ebuild 702 +MD5 fa69cc002c2afda6282089d5782de9e2 tkinfo-2.6.ebuild 683 MD5 4687361cd2e39bba59f9d45cecba6b7d files/digest-tkinfo-2.5-r1 61 MD5 cb4ded9d1e42265978329fc19e480e6f files/digest-tkinfo-2.6 61 diff --git a/app-text/tkinfo/files/digest-tkinfo-2.6 b/app-text/tkinfo/files/digest-tkinfo-2.6 new file mode 100644 index 000000000000..ea8aef109584 --- /dev/null +++ b/app-text/tkinfo/files/digest-tkinfo-2.6 @@ -0,0 +1 @@ +MD5 dabcea3b9399c7e0f4741c98bd009b6c tkinfo-2.6.tar.gz 54793 diff --git a/app-text/tkinfo/tkinfo-2.6.ebuild b/app-text/tkinfo/tkinfo-2.6.ebuild new file mode 100644 index 000000000000..2f2185ad471f --- /dev/null +++ b/app-text/tkinfo/tkinfo-2.6.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/tkinfo/tkinfo-2.6.ebuild,v 1.1 2003/08/25 07:03:30 msterret Exp $ + +DESCRIPTION="Info Browser in TK" +SRC_URI="http://math-www.uni-paderborn.de/~axel/tkinfo/${P}.tar.gz" +HOMEPAGE="http://math-www.uni-paderborn.de/~axel/tkinfo/" + +KEYWORDS="x86 sparc ppc" +LICENSE="freedist" +SLOT="0" + +RDEPEND=">=dev-lang/tk-8.0.5" +DEPEND=">=sys-apps/sed-4" + +src_unpack() { + unpack ${A} + cd ${S} + + sed -i \ + -e "1 s:^.*:#!/usr/bin/wish:" tkinfo || \ + die "sed tkinfo failed" +} + +src_install () { + dobin tkinfo + doman tkinfo.1 + dodoc README +} |