diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 02:40:05 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 02:40:05 +0000 |
commit | 1ae85585558ece6ecd6a654e5bc6b766be9c9bb6 (patch) | |
tree | 2949f84e13a58ca74621d1c844bf95a613664c37 /app-crypt | |
parent | Changed econf||die to econf (diff) | |
download | historical-1ae85585558ece6ecd6a654e5bc6b766be9c9bb6.tar.gz historical-1ae85585558ece6ecd6a654e5bc6b766be9c9bb6.tar.bz2 historical-1ae85585558ece6ecd6a654e5bc6b766be9c9bb6.zip |
Changed einstall||die to einstall
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/mcrypt/mcrypt-2.6.2.ebuild | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/app-crypt/mcrypt/mcrypt-2.6.2.ebuild b/app-crypt/mcrypt/mcrypt-2.6.2.ebuild index 713f0b129709..87315ae4466d 100644 --- a/app-crypt/mcrypt/mcrypt-2.6.2.ebuild +++ b/app-crypt/mcrypt/mcrypt-2.6.2.ebuild @@ -1,8 +1,7 @@ # 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 $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/mcrypt/mcrypt-2.6.2.ebuild,v 1.2 2002/11/30 02:40:05 vapier 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/" @@ -15,17 +14,13 @@ 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 +src_install() { + einstall dodoc README NEWS AUTHORS COPYING THANKS TODO } |