blob: 4f5235201eefce72467217f664e8368146b56a5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# 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.9.ebuild,v 1.6 2002/08/16 02:36:53 murphy Exp $
S=${WORKDIR}/${P}
DESCRIPTION="mhash is a library providing a uniform interface to a large number of hash algorithms."
SRC_URI="http://mhash.sourceforge.net/dl/${P}.tar.gz"
HOMEPAGE="http://mhash.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc sparc64"
DEPEND="virtual/glibc"
src_compile() {
econf || die
emake || die
}
src_install () {
dodir /usr/{bin,include,lib}
einstall || die
dodoc AUTHORS COPYING INSTALL NEWS README TODO
dodoc doc/*.txt doc/skid*
dohtml -r doc
}
|