summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriele Giorgetti <stroke@gentoo.org>2002-06-13 23:14:56 +0000
committerGabriele Giorgetti <stroke@gentoo.org>2002-06-13 23:14:56 +0000
commitca21ff4e5023d1536c8c1e05eb919474f99355fb (patch)
tree2359f416b57f03e1f7c496f87c49f5a325d2c961 /app-crypt
parentremoved --host from the ebuild (diff)
downloadhistorical-ca21ff4e5023d1536c8c1e05eb919474f99355fb.tar.gz
historical-ca21ff4e5023d1536c8c1e05eb919474f99355fb.tar.bz2
historical-ca21ff4e5023d1536c8c1e05eb919474f99355fb.zip
New version. Changed the SRC_URI location to a working sf.net mirror.
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/mhash/ChangeLog9
-rw-r--r--app-crypt/mhash/files/digest-mhash-0.8.161
-rw-r--r--app-crypt/mhash/mhash-0.8.16.ebuild36
3 files changed, 45 insertions, 1 deletions
diff --git a/app-crypt/mhash/ChangeLog b/app-crypt/mhash/ChangeLog
index 303108727724..1ac438527e08 100644
--- a/app-crypt/mhash/ChangeLog
+++ b/app-crypt/mhash/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-crypt/mhash
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/mhash/ChangeLog,v 1.2 2002/03/27 12:26:05 seemant Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/mhash/ChangeLog,v 1.3 2002/06/13 23:14:56 stroke Exp $
+
+*mhash-0.8.16 (14 Jun 2002)
+
+ 14 Jun 2002; Gabriele Giorgetti <stroke@gentoo.org> mhash-0.8.16.ebuild :
+
+ New version. Changed the SRC_URI location to a working sf.net mirror.
+
*mhash-0.8.9 (1 Feb 2002)
diff --git a/app-crypt/mhash/files/digest-mhash-0.8.16 b/app-crypt/mhash/files/digest-mhash-0.8.16
new file mode 100644
index 000000000000..1be633e21e87
--- /dev/null
+++ b/app-crypt/mhash/files/digest-mhash-0.8.16
@@ -0,0 +1 @@
+MD5 9549797230f8a024daf095f1ecae9602 mhash-0.8.16.tar.gz 317951
diff --git a/app-crypt/mhash/mhash-0.8.16.ebuild b/app-crypt/mhash/mhash-0.8.16.ebuild
new file mode 100644
index 000000000000..1049c31dd2f2
--- /dev/null
+++ b/app-crypt/mhash/mhash-0.8.16.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/mhash/mhash-0.8.16.ebuild,v 1.1 2002/06/13 23:14:56 stroke Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="mhash is a library providing a uniform interface to a large number of hash algorithms."
+SRC_URI="http://telia.dl.sourceforge.net/sourceforge/mhash/${P}.tar.gz"
+HOMEPAGE="http://mhash.sourceforge.net/"
+
+DEPEND="virtual/glibc"
+
+src_compile() {
+
+ ./configure --host=${CHOST} \
+ --prefix=/usr \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info \
+ --sysconfdir=/etc || die
+
+ emake || die
+}
+
+src_install () {
+
+ dodir /usr/{bin,include,lib}
+
+ make prefix=${D}/usr \
+ mandir=${D}/usr/share/man \
+ infodir=${D}/usr/share/info \
+ sysconfdir=${D}/etc \
+ install || die
+
+ dodoc AUTHORS COPYING INSTALL NEWS README TODO
+ dodoc doc/*.txt doc/skid*
+ dohtml -r doc
+}