diff options
author | Hanno Boeck <hanno@gentoo.org> | 2004-08-25 11:52:09 +0000 |
---|---|---|
committer | Hanno Boeck <hanno@gentoo.org> | 2004-08-25 11:52:09 +0000 |
commit | 09fbb255941967889e25a85fc78f825db166a8bf (patch) | |
tree | 0aa371cbb5e9304736c75316e3708f6961ba9fd0 /app-crypt/hashsum | |
parent | Initial ebuild. RT dependency (diff) | |
download | historical-09fbb255941967889e25a85fc78f825db166a8bf.tar.gz historical-09fbb255941967889e25a85fc78f825db166a8bf.tar.bz2 historical-09fbb255941967889e25a85fc78f825db166a8bf.zip |
added hashsum ebuild
Diffstat (limited to 'app-crypt/hashsum')
-rw-r--r-- | app-crypt/hashsum/ChangeLog | 9 | ||||
-rw-r--r-- | app-crypt/hashsum/Manifest | 4 | ||||
-rw-r--r-- | app-crypt/hashsum/files/digest-hashsum-1.6 | 1 | ||||
-rw-r--r-- | app-crypt/hashsum/hashsum-1.6.ebuild | 37 | ||||
-rw-r--r-- | app-crypt/hashsum/metadata.xml | 6 |
5 files changed, 57 insertions, 0 deletions
diff --git a/app-crypt/hashsum/ChangeLog b/app-crypt/hashsum/ChangeLog new file mode 100644 index 000000000000..e90e17112a49 --- /dev/null +++ b/app-crypt/hashsum/ChangeLog @@ -0,0 +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 $ + +*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>. + diff --git a/app-crypt/hashsum/Manifest b/app-crypt/hashsum/Manifest new file mode 100644 index 000000000000..e2b3bc5cd5d4 --- /dev/null +++ b/app-crypt/hashsum/Manifest @@ -0,0 +1,4 @@ +MD5 2c4555e9416baff53dae357f79bb07d4 hashsum-1.6.ebuild 1173 +MD5 cba7c208b399c7892975671ebc25f5f6 ChangeLog 362 +MD5 a72a06a37ca4e5905085ebff07fe9e9e metadata.xml 217 +MD5 92f483cee202de6bd9deb9f8ae62d8ca files/digest-hashsum-1.6 63 diff --git a/app-crypt/hashsum/files/digest-hashsum-1.6 b/app-crypt/hashsum/files/digest-hashsum-1.6 new file mode 100644 index 000000000000..c87c56f599a4 --- /dev/null +++ b/app-crypt/hashsum/files/digest-hashsum-1.6 @@ -0,0 +1 @@ +MD5 45d97b77096e60600ae84defe0605cad hashsum-1.6.tar.gz 752712 diff --git a/app-crypt/hashsum/hashsum-1.6.ebuild b/app-crypt/hashsum/hashsum-1.6.ebuild new file mode 100644 index 000000000000..a6d597c111fe --- /dev/null +++ b/app-crypt/hashsum/hashsum-1.6.ebuild @@ -0,0 +1,37 @@ +# 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 $ + +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} + +src_compile() { + emake || die "emake failed" +} + +src_install() { + dobin hashsum + 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 +} diff --git a/app-crypt/hashsum/metadata.xml b/app-crypt/hashsum/metadata.xml new file mode 100644 index 000000000000..efa54454de71 --- /dev/null +++ b/app-crypt/hashsum/metadata.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer><email>hanno@gentoo.org</email></maintainer> +</pkgmetadata> |