diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2005-09-10 22:47:30 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2005-09-10 22:47:30 +0000 |
commit | c03cb4a1ff44265a4e471066504e65e0be021012 (patch) | |
tree | 4d6cae5c6e10e0e349b670efb9b3b59ae13f1835 /app-crypt/mdcrack/mdcrack-1.2.ebuild | |
parent | Security bump for CAN-2005-2491 and CAN-2005-2700. Fixes bugs 103554 and 104807 (diff) | |
download | gentoo-2-c03cb4a1ff44265a4e471066504e65e0be021012.tar.gz gentoo-2-c03cb4a1ff44265a4e471066504e65e0be021012.tar.bz2 gentoo-2-c03cb4a1ff44265a4e471066504e65e0be021012.zip |
add gcc4 patch
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'app-crypt/mdcrack/mdcrack-1.2.ebuild')
-rw-r--r-- | app-crypt/mdcrack/mdcrack-1.2.ebuild | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/app-crypt/mdcrack/mdcrack-1.2.ebuild b/app-crypt/mdcrack/mdcrack-1.2.ebuild index bb02dde1fee9..430dc02e24a0 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.2 2005/08/19 03:48:46 metalgod Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/mdcrack/mdcrack-1.2.ebuild,v 1.3 2005/09/10 22:47:30 vanquirius 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="~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 } - |