diff options
Diffstat (limited to 'app-crypt/mdcrack/mdcrack-1.2.ebuild')
-rw-r--r-- | app-crypt/mdcrack/mdcrack-1.2.ebuild | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/app-crypt/mdcrack/mdcrack-1.2.ebuild b/app-crypt/mdcrack/mdcrack-1.2.ebuild index 8c7e9398198b..07c4e6cad79a 100644 --- a/app-crypt/mdcrack/mdcrack-1.2.ebuild +++ b/app-crypt/mdcrack/mdcrack-1.2.ebuild @@ -1,16 +1,22 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/mdcrack/mdcrack-1.2.ebuild,v 1.1 2005/08/14 12:48:49 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/mdcrack/mdcrack-1.2.ebuild,v 1.1.1.1 2005/11/30 09:44:52 chriswhite Exp $ + +inherit eutils -IUSE="ncurses" DESCRIPTION="A MD4/MD5/NTML hashes bruteforcer." HOMEPAGE="http://mdcrack.df.ru/" SRC_URI="http://mdcrack.df.ru/download/${P}.tar.gz" SLOT="0" LICENSE="GPL-2" -KEYWORDS="~x86 " +KEYWORDS="~amd64 ~x86" +IUSE="ncurses" DEPEND="virtual/libc" +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/${P}-gcc4.diff +} src_compile() { use ncurses || \ @@ -30,4 +36,3 @@ src_install() { dobin bin/mdcrack dodoc BENCHMARKS CREDITS FAQ README TODO VERSIONS WWW } - |