blob: 99c1ae9bf6233bcdd7f5df9a144f74fff27e44a7 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/mcrypt/mcrypt-2.6.4.ebuild,v 1.3 2003/09/06 22:15:09 msterret Exp $
DESCRIPTION="replacement of the old unix crypt(1)"
HOMEPAGE="http://mcrypt.hellug.gr/"
SRC_URI="ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc"
IUSE="nls"
DEPEND=">=dev-libs/libmcrypt-2.5.7
>=app-crypt/mhash-0.8.15"
src_compile() {
local myconf
use nls || myconf="--disable-nls"
econf ${myconf} || die "configure error"
emake || die "make error"
}
src_install() {
einstall || die "install error"
dodoc README NEWS AUTHORS COPYING THANKS TODO
}
|