mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-18 12:51:02 +02:00
hashcat-gui: woohoo, new release, opensource and now hack free!
This commit is contained in:
parent
e13aea95d5
commit
0b0ebb188c
2 changed files with 70 additions and 0 deletions
2
app-crypt/hashcat-gui/Manifest
Normal file
2
app-crypt/hashcat-gui/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST hashcat-gui-0.5.1.zip 130106 RMD160 d91a57592dbfd95e7dc5f81c9c54c7e1765d2f5e SHA1 907d21a4844a515b9c23285570de4ef25e9009de SHA256 d8294724ce6ea5980ba98f43e44be6dd706c0bffc56128d2cd0db3c71aedd0d3
|
||||
EBUILD hashcat-gui-0.5.1.ebuild 1444 RMD160 84853ead42f28c58c1e9a8d6e875bb748633cd8f SHA1 39b893fbee9800a00291404f361881885b7f00df SHA256 178c616267cef5be10dbb6aefa72153da5de8fa05db5a462fd507206889e2ad7
|
||||
68
app-crypt/hashcat-gui/hashcat-gui-0.5.1.ebuild
Normal file
68
app-crypt/hashcat-gui/hashcat-gui-0.5.1.ebuild
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit eutils qt4-r2
|
||||
|
||||
#pax-utils?
|
||||
|
||||
DESCRIPTION="A gui for the *hashcat* suite of tools"
|
||||
HOMEPAGE="https://github.com/scandium/hashcat-gui"
|
||||
#HOMEPAGE="http://hashcat.net/hashcat-gui/"
|
||||
|
||||
SRC_URI="https://github.com/scandium/hashcat-gui/zipball/b6b01be723742ad89ba31fdb2c30b35306318f8b -> ${P}.zip"
|
||||
|
||||
LICENSE="GPL3"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="app-crypt/hashcat-bin
|
||||
app-crypt/oclhashcat-plus-bin
|
||||
app-crypt/oclhashcat-lite-bin
|
||||
app-arch/bzip2
|
||||
sys-libs/zlib
|
||||
sys-apps/util-linux
|
||||
media-libs/fontconfig
|
||||
media-libs/libpng
|
||||
media-libs/freetype
|
||||
x11-libs/libSM
|
||||
x11-libs/libXrender
|
||||
x11-libs/libXinerama
|
||||
x11-libs/libXau
|
||||
x11-libs/qt-gui
|
||||
x11-libs/libX11
|
||||
x11-libs/libXext
|
||||
x11-libs/libXrandr
|
||||
x11-libs/qt-core
|
||||
x11-libs/libXdmcp
|
||||
x11-libs/libxcb
|
||||
x11-libs/libICE
|
||||
dev-libs/glib
|
||||
dev-libs/expat
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
S="${WORKDIR}"/scandium-hashcat-gui-b6b01be
|
||||
|
||||
src_prepare() {
|
||||
sed -i 's#./hashcat#/opt/hashcat-bin#g' src/mainwindow.cpp
|
||||
sed -i 's#./oclHashcat-plus#/opt/oclhashcat-plus-bin#g' src/mainwindow.cpp
|
||||
sed -i 's#./oclHashcat-lite#/opt/oclhashcat-lite-bin#g' src/mainwindow.cpp
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dodoc ChangeLog FAQ INSTALL LICENSE README TODO
|
||||
|
||||
cd src
|
||||
eqmake4 -config release
|
||||
emake
|
||||
|
||||
#I assume this is needed but I didn't check
|
||||
#pax-mark m hashcat-gui
|
||||
|
||||
dobin hashcat-gui
|
||||
}
|
||||
Loading…
Reference in a new issue