diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-28 05:47:08 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-28 05:47:08 +0000 |
commit | 5c216f150a9fffecb43030343422ef7fbed8e4ff (patch) | |
tree | 5d5ec352261ac35454f4a44cc1dd0fe676a5d01e /app-crypt/hashsum | |
parent | screen run on linux consoles can do color too (diff) | |
download | historical-5c216f150a9fffecb43030343422ef7fbed8e4ff.tar.gz historical-5c216f150a9fffecb43030343422ef7fbed8e4ff.tar.bz2 historical-5c216f150a9fffecb43030343422ef7fbed8e4ff.zip |
dep fix; tidy
Diffstat (limited to 'app-crypt/hashsum')
-rw-r--r-- | app-crypt/hashsum/ChangeLog | 5 | ||||
-rw-r--r-- | app-crypt/hashsum/Manifest | 4 | ||||
-rw-r--r-- | app-crypt/hashsum/hashsum-1.6.ebuild | 11 |
3 files changed, 13 insertions, 7 deletions
diff --git a/app-crypt/hashsum/ChangeLog b/app-crypt/hashsum/ChangeLog index e90e17112a49..5e08c07abc7f 100644 --- a/app-crypt/hashsum/ChangeLog +++ b/app-crypt/hashsum/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-crypt/hashsum # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/hashsum/ChangeLog,v 1.1 2004/08/25 11:52:09 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/hashsum/ChangeLog,v 1.2 2004/08/28 05:47:08 mr_bones_ Exp $ + + 27 Aug 2004; Michael Sterrett <mr_bones_@gentoo.org> hashsum-1.6.ebuild: + dep fix; tidy *hashsum-1.6 (25 Aug 2004) diff --git a/app-crypt/hashsum/Manifest b/app-crypt/hashsum/Manifest index e2b3bc5cd5d4..b090f95e95ef 100644 --- a/app-crypt/hashsum/Manifest +++ b/app-crypt/hashsum/Manifest @@ -1,4 +1,4 @@ -MD5 2c4555e9416baff53dae357f79bb07d4 hashsum-1.6.ebuild 1173 -MD5 cba7c208b399c7892975671ebc25f5f6 ChangeLog 362 +MD5 2f5249c17cd9a3b81cebf7668c615d7b ChangeLog 458 +MD5 25b0697a22adb9c5f96a4fba09d5fec1 hashsum-1.6.ebuild 1203 MD5 a72a06a37ca4e5905085ebff07fe9e9e metadata.xml 217 MD5 92f483cee202de6bd9deb9f8ae62d8ca files/digest-hashsum-1.6 63 diff --git a/app-crypt/hashsum/hashsum-1.6.ebuild b/app-crypt/hashsum/hashsum-1.6.ebuild index a6d597c111fe..d89261beb565 100644 --- a/app-crypt/hashsum/hashsum-1.6.ebuild +++ b/app-crypt/hashsum/hashsum-1.6.ebuild @@ -1,23 +1,26 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/hashsum/hashsum-1.6.ebuild,v 1.1 2004/08/25 11:52:09 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/hashsum/hashsum-1.6.ebuild,v 1.2 2004/08/28 05:47:08 mr_bones_ Exp $ DESCRIPTION="Command line tool for advanced hashing algorithms" HOMEPAGE="http://www.certainkey.com/resources/hashsum.php" SRC_URI="http://www.certainkey.com/resources/downloads/${P}.tar.gz" + LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="doc" -DEPEND="virtual/glibc" -S=${WORKDIR}/${PN} + +DEPEND="virtual/libc" + +S="${WORKDIR}/${PN}" src_compile() { emake || die "emake failed" } src_install() { - dobin hashsum + dobin hashsum || die "dobin failed" dosym /usr/bin/hashsum /usr/bin/sha256sum dosym /usr/bin/hashsum /usr/bin/sha384sum dosym /usr/bin/hashsum /usr/bin/sha512sum |