diff options
author | Geert Bevin <gbevin@gentoo.org> | 2002-01-15 01:27:50 +0000 |
---|---|---|
committer | Geert Bevin <gbevin@gentoo.org> | 2002-01-15 01:27:50 +0000 |
commit | b8f4599ef51b424876002328a3479110548d17d4 (patch) | |
tree | a3d61a146b186e6e2bb7c3baeb5c8e050ecdc081 /app-text/tkinfo | |
parent | initial commit (diff) | |
download | historical-b8f4599ef51b424876002328a3479110548d17d4.tar.gz historical-b8f4599ef51b424876002328a3479110548d17d4.tar.bz2 historical-b8f4599ef51b424876002328a3479110548d17d4.zip |
bumped up release numbers of packages that were updated with the tcl/tk
update
Diffstat (limited to 'app-text/tkinfo')
-rw-r--r-- | app-text/tkinfo/files/digest-tkinfo-2.5-r1 | 1 | ||||
-rw-r--r-- | app-text/tkinfo/tkinfo-2.5-r1.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/app-text/tkinfo/files/digest-tkinfo-2.5-r1 b/app-text/tkinfo/files/digest-tkinfo-2.5-r1 new file mode 100644 index 000000000000..87c39e5d1b39 --- /dev/null +++ b/app-text/tkinfo/files/digest-tkinfo-2.5-r1 @@ -0,0 +1 @@ +MD5 e194131e1900d1214c4157b247054c0b tkinfo-2.5.tar.gz 57344 diff --git a/app-text/tkinfo/tkinfo-2.5-r1.ebuild b/app-text/tkinfo/tkinfo-2.5-r1.ebuild new file mode 100644 index 000000000000..ee0b83d94a48 --- /dev/null +++ b/app-text/tkinfo/tkinfo-2.5-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Ben Lutgens <blutgens@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-text/tkinfo/tkinfo-2.5-r1.ebuild,v 1.1 2002/01/15 01:27:50 gbevin Exp $ + +S=${WORKDIR}/${P} +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/" + +DEPEND=">=dev-lang/tk-8.0.5" + + +src_install () { + + dobin tkinfo + doman tkinfo.1 + dodoc README + +} + +pkg_postinst () { + +# Let's check to see if info has been setup completely +cd /usr/share/info +if [ -f dir ]; then + exit 0; +else + mkinfodir . > dir +fi +} + |