# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-crypt/mcrypt/mcrypt-2.6.2.ebuild,v 1.12 2005/01/01 12:33:48 eradicator Exp $ DESCRIPTION="replacement of the old unix crypt(1)" HOMEPAGE="http://mcrypt.sourceforge.net/" SRC_URI="mirror://sourceforge/mcrypt/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ppc ~sparc" IUSE="nls" DEPEND=">=dev-libs/libmcrypt-2.5.1 >=app-crypt/mhash-0.8.15" src_compile() { local myconf use nls || myconf="--disable-nls" econf ${myconf} || die emake || die } src_install() { einstall || die dodoc README NEWS AUTHORS THANKS TODO }