diff options
author | 2012-07-02 02:12:24 +0000 | |
---|---|---|
committer | 2012-07-02 02:12:24 +0000 | |
commit | a1a150a19b1372bdac9c742832e8152280048aef (patch) | |
tree | a385c04d605f97d1bd59af7f8cd9389a777e17ae /app-crypt | |
parent | initial commit of oclhashcat-plus-bin (diff) | |
download | gentoo-2-a1a150a19b1372bdac9c742832e8152280048aef.tar.gz gentoo-2-a1a150a19b1372bdac9c742832e8152280048aef.tar.bz2 gentoo-2-a1a150a19b1372bdac9c742832e8152280048aef.zip |
initial commit of hashcat-gui
(Portage version: 2.1.11.3/cvs/Linux x86_64)
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/hashcat-gui/ChangeLog | 9 | ||||
-rw-r--r-- | app-crypt/hashcat-gui/hashcat-gui-0.5.1.ebuild | 44 | ||||
-rw-r--r-- | app-crypt/hashcat-gui/metadata.xml | 10 |
3 files changed, 63 insertions, 0 deletions
diff --git a/app-crypt/hashcat-gui/ChangeLog b/app-crypt/hashcat-gui/ChangeLog new file mode 100644 index 000000000000..8b74bb24a249 --- /dev/null +++ b/app-crypt/hashcat-gui/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-crypt/hashcat-gui +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/hashcat-gui/ChangeLog,v 1.1 2012/07/02 02:12:24 zerochaos Exp $ + +*hashcat-gui-0.5.1 (02 Jul 2012) + + 02 Jul 2012; Rick Farina <zerochaos@gentoo.org> +hashcat-gui-0.5.1.ebuild, + +metadata.xml: + initial commit of hashcat-gui diff --git a/app-crypt/hashcat-gui/hashcat-gui-0.5.1.ebuild b/app-crypt/hashcat-gui/hashcat-gui-0.5.1.ebuild new file mode 100644 index 000000000000..5ee715c080b5 --- /dev/null +++ b/app-crypt/hashcat-gui/hashcat-gui-0.5.1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/hashcat-gui/hashcat-gui-0.5.1.ebuild,v 1.1 2012/07/02 02:12:24 zerochaos Exp $ + +EAPI=4 + +inherit eutils qt4-r2 + +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="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="" + +RDEPEND="app-crypt/hashcat-bin + app-crypt/oclhashcat-plus-bin + app-crypt/oclhashcat-lite-bin + x11-libs/qt-gui + x11-libs/qt-core" +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 README TODO + + cd src + eqmake4 -config release + emake + + dobin hashcat-gui +} diff --git a/app-crypt/hashcat-gui/metadata.xml b/app-crypt/hashcat-gui/metadata.xml new file mode 100644 index 000000000000..88e9eb110229 --- /dev/null +++ b/app-crypt/hashcat-gui/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>crypto</herd> +<maintainer> +<email>zerochaos@gentoo.org</email> +<name>Rick Farina</name> +</maintainer> +</pkgmetadata> + |