diff options
author | Michael Sterrett <msterret@gentoo.org> | 2003-09-05 22:37:27 +0000 |
---|---|---|
committer | Michael Sterrett <msterret@gentoo.org> | 2003-09-05 22:37:27 +0000 |
commit | e34e99ff3a479e58cdd7c2d310dce7bbf8070e74 (patch) | |
tree | 670a0fb22c3de0ef56319a57f951909e0608d680 /app-text/tkinfo | |
parent | digest (diff) | |
download | gentoo-2-e34e99ff3a479e58cdd7c2d310dce7bbf8070e74.tar.gz gentoo-2-e34e99ff3a479e58cdd7c2d310dce7bbf8070e74.tar.bz2 gentoo-2-e34e99ff3a479e58cdd7c2d310dce7bbf8070e74.zip |
whitespace cleanup
Diffstat (limited to 'app-text/tkinfo')
-rw-r--r-- | app-text/tkinfo/Manifest | 2 | ||||
-rw-r--r-- | app-text/tkinfo/tkinfo-2.5-r1.ebuild | 26 |
2 files changed, 12 insertions, 16 deletions
diff --git a/app-text/tkinfo/Manifest b/app-text/tkinfo/Manifest index 1543dc14fb10..db3158d4e043 100644 --- a/app-text/tkinfo/Manifest +++ b/app-text/tkinfo/Manifest @@ -1,5 +1,5 @@ MD5 0bfe754e319975aba0fc465a82d479d0 ChangeLog 1066 -MD5 538ee51b4e169694b941ba1e1895834f tkinfo-2.5-r1.ebuild 717 +MD5 aa06e8e9c716a4005b2affb9b2862486 tkinfo-2.5-r1.ebuild 714 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/tkinfo-2.5-r1.ebuild b/app-text/tkinfo/tkinfo-2.5-r1.ebuild index 34934329daff..dd1a8aa7409a 100644 --- a/app-text/tkinfo/tkinfo-2.5-r1.ebuild +++ b/app-text/tkinfo/tkinfo-2.5-r1.ebuild @@ -1,6 +1,6 @@ # 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.5-r1.ebuild,v 1.10 2003/07/17 00:08:38 pylon Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/tkinfo/tkinfo-2.5-r1.ebuild,v 1.11 2003/09/05 22:37:22 msterret Exp $ S=${WORKDIR}/${P} DESCRIPTION="Info Browser in TK" @@ -14,21 +14,17 @@ DEPEND=">=dev-lang/tk-8.0.5" src_install () { - - dobin tkinfo - doman tkinfo.1 - dodoc README - + 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 + # 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 } - |