diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-10-31 16:07:14 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-10-31 16:07:14 +0000 |
commit | 2da75218cc3c9e7918522b8234635a5609a928c0 (patch) | |
tree | e251097e79d76579628ca1250bab9eaed8ee59bf /app-crypt | |
parent | version bump (diff) | |
download | historical-2da75218cc3c9e7918522b8234635a5609a928c0.tar.gz historical-2da75218cc3c9e7918522b8234635a5609a928c0.tar.bz2 historical-2da75218cc3c9e7918522b8234635a5609a928c0.zip |
replacement for crypt
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/mcrypt/ChangeLog | 11 | ||||
-rw-r--r-- | app-crypt/mcrypt/files/digest-mcrypt-2.6.2 | 1 | ||||
-rw-r--r-- | app-crypt/mcrypt/mcrypt-2.6.2.ebuild | 31 |
3 files changed, 43 insertions, 0 deletions
diff --git a/app-crypt/mcrypt/ChangeLog b/app-crypt/mcrypt/ChangeLog new file mode 100644 index 000000000000..10f4843f4f6d --- /dev/null +++ b/app-crypt/mcrypt/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-crypt/mcrypt +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/mcrypt/ChangeLog,v 1.1 2002/10/31 16:07:14 seemant Exp $ + +*mcrypt-2.6.2 (31 Oct 2002) + + 31 Oct 2002; Seemant Kulleen <seemant@gentoo.org> mcrypt-2.6.2.ebuild + ChangeLog files/digest-mcrypt-2.6.2 : + + Replacement for the old Unix crypt(1). Ebuild submitted by: + chad.netzer@stanfordalumni.org (Chad Netzer) in bug #7782. diff --git a/app-crypt/mcrypt/files/digest-mcrypt-2.6.2 b/app-crypt/mcrypt/files/digest-mcrypt-2.6.2 new file mode 100644 index 000000000000..8b7fac29774a --- /dev/null +++ b/app-crypt/mcrypt/files/digest-mcrypt-2.6.2 @@ -0,0 +1 @@ +MD5 660364e61e6720d2ec333082e43fd0c1 mcrypt-2.6.2.tar.gz 389433 diff --git a/app-crypt/mcrypt/mcrypt-2.6.2.ebuild b/app-crypt/mcrypt/mcrypt-2.6.2.ebuild new file mode 100644 index 000000000000..713f0b129709 --- /dev/null +++ b/app-crypt/mcrypt/mcrypt-2.6.2.ebuild @@ -0,0 +1,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/mcrypt/mcrypt-2.6.2.ebuild,v 1.1 2002/10/31 16:07:14 seemant Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="mcrypt is intended to be a replacement of the old unix crypt(1)" +SRC_URI="ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/${P}.tar.gz" +HOMEPAGE="http://mcrypt.hellug.gr/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~sparc64" + +DEPEND=">=dev-libs/libmcrypt-2.5.1 + >=app-crypt/mhash-0.8.15" + +src_compile() { + + local myconf + + use nls || myconf="--disable-nls" + + econf ${myconf} + emake || die +} + + +src_install () { + einstall || die + dodoc README NEWS AUTHORS COPYING THANKS TODO +} |