From fbb8b3b07c87cba50863876798f78fa893b70e8b Mon Sep 17 00:00:00 2001 From: Hank Leininger Date: Fri, 10 Jun 2016 18:32:50 -0400 Subject: [PATCH] Added an ebuild for the current oclhashcat beta. This builds and installs fine for me, now that a couple of small Makefile tweaks have been merged upstream. Note, even though 3.0 is still in beta, I do not recommend trying an ebuild for the 2.0x release sources. The build environment in 3.0 has improved hugely; ebuilds for building 2.0 from source are far more painful. --- .../oclhashcat-3.0.0_pre20160610.ebuild | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 app-crypt/oclhashcat/oclhashcat-3.0.0_pre20160610.ebuild diff --git a/app-crypt/oclhashcat/oclhashcat-3.0.0_pre20160610.ebuild b/app-crypt/oclhashcat/oclhashcat-3.0.0_pre20160610.ebuild new file mode 100644 index 000000000..d3cf5baa5 --- /dev/null +++ b/app-crypt/oclhashcat/oclhashcat-3.0.0_pre20160610.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit git-2 autotools + +DESCRIPTION="An advanced GPU-based password recovery utility" +HOMEPAGE="https://hashcat.net/oclhashcat/" +EGIT_REPO_URI="https://github.com/hashcat/oclhashcat.git" +EGIT_COMMIT="f30629b21a5350b205972e3e7a5dd62f683e15ad" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86 ~amd64" +DEPEND="dev-util/intel-ocl-sdk" + +src_compile() { + export PREFIX=/usr + make +}