+++ /dev/null
-# ChangeLog for app-crypt/hashsum
-# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/hashsum/ChangeLog,v 1.6 2005/04/24 10:47:23 hansmi Exp $
-
- 24 Apr 2005; Michael Hanselmann <hansmi@gentoo.org> hashsum-1.6.ebuild:
- Stable on ppc.
-
- 21 Oct 2004; Hanno Boeck <hanno@gentoo.org> hashsum-1.6.ebuild:
- Stable on x86.
-
- 03 Sep 2004; David Holm <dholm@gentoo.org> hashsum-1.6.ebuild:
- Added to ~ppc.
-
- 27 Aug 2004; Michael Sterrett <mr_bones_@gentoo.org> hashsum-1.6.ebuild:
- dep fix; tidy
-
-*hashsum-1.6 (25 Aug 2004)
-
- 25 Aug 2004; Hanno Boeck <hanno@gentoo.org> +hashsum-1.6.ebuild:
- User submitted ebuild by Lars Strojny <lars@strojny.net>.
-
+++ /dev/null
-MD5 a72a06a37ca4e5905085ebff07fe9e9e metadata.xml 217
-MD5 f9d2837ad674e3fa32c215270f3dd38c ChangeLog 714
-MD5 69284bdb9ffec8b7bb2d3bbc29106930 hashsum-1.6.ebuild 1203
-MD5 92f483cee202de6bd9deb9f8ae62d8ca files/digest-hashsum-1.6 63
+++ /dev/null
-# Copyright 1999-2005 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.6 2005/04/24 10:47:23 hansmi 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 ppc"
-IUSE="doc"
-
-DEPEND="virtual/libc"
-
-S="${WORKDIR}/${PN}"
-
-src_compile() {
- emake || die "emake failed"
-}
-
-src_install() {
- 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
- dosym /usr/bin/hashsum /usr/bin/ripemd160sum
- # There are a heap of manpages. One for every sourcefile.
- # But currently I see no other way but to use them all
- # Maybe it should depend on whether USE="doc" is set or not
- doman hashsum_docs/man/man3/*.3
- if use doc ; then
- insinto /usr/doc/${PF}/latex
- doins hashsum_docs/latex/*.*
- insinto /usr/doc/${PF}/html
- doins hashsum_docs/html/*.*
- insinto /usr/doc/${PF}/rtf
- doins hashsum_docs//rtf/*.*
- fi
-}