From 8376ef56580626e9c0f796d5b85b53a0a1c7d5f5 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 21:03:06 +0100 Subject: gentoo resync : 14.07.2018 --- app-crypt/ophcrack-tables/Manifest | 5 +++ app-crypt/ophcrack-tables/metadata.xml | 16 +++++++++ .../ophcrack-tables/ophcrack-tables-1.0-r2.ebuild | 38 ++++++++++++++++++++++ 3 files changed, 59 insertions(+) create mode 100644 app-crypt/ophcrack-tables/Manifest create mode 100644 app-crypt/ophcrack-tables/metadata.xml create mode 100644 app-crypt/ophcrack-tables/ophcrack-tables-1.0-r2.ebuild (limited to 'app-crypt/ophcrack-tables') diff --git a/app-crypt/ophcrack-tables/Manifest b/app-crypt/ophcrack-tables/Manifest new file mode 100644 index 000000000000..0959db4a34bf --- /dev/null +++ b/app-crypt/ophcrack-tables/Manifest @@ -0,0 +1,5 @@ +DIST tables_vista_free.zip 410609902 BLAKE2B 122f5f0dffdbfae7969f0930266fcbfd95fe68543b465c063f1a742c2d036334ee168331045914e822c2f01d7321925a09095d2a66343368bbbe672ed379bd0c SHA512 daadc06411a528d338862294ed5e9c5162c86bb7c784e2ae572af0d441afe4bf81844432bb543a9f711dd632271ed89e14ded515d1ef1befad8c44a1a7eb14db +DIST tables_xp_free_fast.zip 701901509 BLAKE2B 7ff40f4a7a0eab6ef961b80e5aa7d86985191314697acc284d256f0a63794467947d236dde1cedf36597b138711bdabb9acaef5b04dd8e674e39ed94101bdcbb SHA512 d2849b2a48508bea830ecf1b39893f734e8bf1bcb6f71358ad344c0f584a3a9c9795e5c0d12851e44c332aeecf00e2da0c55b31fe0491d3bbd527058e45797a3 +DIST tables_xp_free_small.zip 370848194 BLAKE2B 1b1358bd3ddd4e3a574504f642aa5a7125641fc3c542d3e05084f228c11cb90d0dba41ae13227ca1fbc36a9241a53a6c44fe0f092da8e39485f7d2319b0f79c1 SHA512 50d0761a0d950d6492acb083b05c3e33dab905ab10f24a70fd8e25006ea583e871ae8d7908eabc2fed65b106f3ba994973ee881e40b147a6aa8ba297bf14ba61 +EBUILD ophcrack-tables-1.0-r2.ebuild 849 BLAKE2B b0988a5c6fa23997505da9fafb8642a85a60b4cc284f730449028fabd9af40f34b069a9723ef274169ee82938c9fba3258221e90d8654f78a95bca62c1e72bd3 SHA512 5906d12162d24230ae3e6b75b46cf347d2d1f2c2fd6f1b4c47fcaf37ede89c2f2f1986c84f50acdd545fdf2f670adb2a2f6ef22c1c47acf90f69c5324c3b4726 +MISC metadata.xml 546 BLAKE2B 232c2b9898effbd7f0332db19aac69eab6512cbdce55dd1cff820f5e1d0327c404ac3e87895be0ae9609fe5aab2e0f0145b7bfd6ff7ef4665510edbc5e28e10d SHA512 9df4dbe573e7c3a35f05c96c00549ae5777eecae46add6a766f71869787e7d1e3f4fc534e22d6babdc1eb2fceae7aeb9a95d38ac606b32ab57156d1824cbd6c6 diff --git a/app-crypt/ophcrack-tables/metadata.xml b/app-crypt/ophcrack-tables/metadata.xml new file mode 100644 index 000000000000..3316e0db9ad7 --- /dev/null +++ b/app-crypt/ophcrack-tables/metadata.xml @@ -0,0 +1,16 @@ + + + + + ikelos@gentoo.org + Mike Auty + + + Installs the free Vista ophcrack tables + Installs the fast XP ophcrack tables + Installs the small free XP ophcrack tables + + + ophcrack + + diff --git a/app-crypt/ophcrack-tables/ophcrack-tables-1.0-r2.ebuild b/app-crypt/ophcrack-tables/ophcrack-tables-1.0-r2.ebuild new file mode 100644 index 000000000000..619eee011d2d --- /dev/null +++ b/app-crypt/ophcrack-tables/ophcrack-tables-1.0-r2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="5" + +DESCRIPTION="Tables available for ophcrack" +HOMEPAGE="http://ophcrack.sourceforge.net/" +SRC_URI="xpfast? ( mirror://sourceforge/ophcrack/tables_xp_free_fast.zip ) + xpsmall? ( mirror://sourceforge/ophcrack/tables_xp_free_small.zip ) + vistafree? ( mirror://sourceforge/ophcrack/tables_vista_free.zip )" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~ppc" +IUSE="+xpfast xpsmall +vistafree" + +REQUIRED_USE="|| ( xpfast xpsmall vistafree )" + +DEPEND="app-arch/unzip" +RDEPEND="" + +S=${WORKDIR} + +src_unpack() { + for i in ${A}; + do + table=${i#tables_} + table=${table%.zip} + mkdir "${S}/${table}" + cd $_ || die + unpack "${i}" + done +} + +src_install() { + dodir /usr/share/ophcrack/ + cp -r "${S}"/* "${ED}"/usr/share/ophcrack/ || die +} -- cgit v1.2.3