summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2007-05-01 06:31:22 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2007-05-01 06:31:22 +0000
commite05436d147596129ab3627738544e45a8fc268a5 (patch)
tree56f3b094140e08f674ddabc61d084738fe6dbc01 /app-crypt
parentReplace as-needed patch (#176264). (diff)
downloadgentoo-2-e05436d147596129ab3627738544e45a8fc268a5.tar.gz
gentoo-2-e05436d147596129ab3627738544e45a8fc268a5.tar.bz2
gentoo-2-e05436d147596129ab3627738544e45a8fc268a5.zip
Version bump.
(Portage version: 2.1.2.5)
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/mhash/ChangeLog7
-rw-r--r--app-crypt/mhash/files/digest-mhash-0.9.93
-rw-r--r--app-crypt/mhash/mhash-0.9.9.ebuild34
3 files changed, 43 insertions, 1 deletions
diff --git a/app-crypt/mhash/ChangeLog b/app-crypt/mhash/ChangeLog
index 021ff924f239..99333aa1ab08 100644
--- a/app-crypt/mhash/ChangeLog
+++ b/app-crypt/mhash/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-crypt/mhash
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/mhash/ChangeLog,v 1.38 2007/03/28 03:29:51 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/mhash/ChangeLog,v 1.39 2007/05/01 06:31:22 robbat2 Exp $
+
+*mhash-0.9.9 (01 May 2007)
+
+ 01 May 2007; Robin H. Johnson <robbat2@gentoo.org> +mhash-0.9.9.ebuild:
+ Version bump.
*mhash-0.9.8.1 (28 Mar 2007)
diff --git a/app-crypt/mhash/files/digest-mhash-0.9.9 b/app-crypt/mhash/files/digest-mhash-0.9.9
new file mode 100644
index 000000000000..4a1e2860d87c
--- /dev/null
+++ b/app-crypt/mhash/files/digest-mhash-0.9.9
@@ -0,0 +1,3 @@
+MD5 955667f04d89ad28ea0b5eecb9ce0b1e mhash-0.9.9.tar.gz 919622
+RMD160 8bca6a7bbfafb4098a829b60f7027c2de0fa0e10 mhash-0.9.9.tar.gz 919622
+SHA256 a61d4f30f3377afd41e316e53f1d6a9a829f34d20add0e4bb29752cb01435c77 mhash-0.9.9.tar.gz 919622
diff --git a/app-crypt/mhash/mhash-0.9.9.ebuild b/app-crypt/mhash/mhash-0.9.9.ebuild
new file mode 100644
index 000000000000..795cab1a10cb
--- /dev/null
+++ b/app-crypt/mhash/mhash-0.9.9.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/mhash/mhash-0.9.9.ebuild,v 1.1 2007/05/01 06:31:22 robbat2 Exp $
+
+inherit eutils
+
+DESCRIPTION="library providing a uniform interface to a large number of hash algorithms"
+HOMEPAGE="http://mhash.sourceforge.net/"
+SRC_URI="mirror://sourceforge/mhash/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""
+
+src_compile() {
+ econf \
+ --enable-static \
+ --enable-shared || die
+ emake || die "make failure"
+ cd doc && emake mhash.html || die "failed to build html"
+}
+
+src_install() {
+ dodir /usr/{bin,include,lib}
+ make install DESTDIR="${D}" || die "install failure"
+
+ dodoc AUTHORS INSTALL NEWS README TODO THANKS ChangeLog
+ dodoc doc/*.txt doc/skid* doc/*.c
+ dohtml doc/mhash.html || die "dohtml failed"
+}