summaryrefslogtreecommitdiff
path: root/app-crypt/ophcrack-tables/ophcrack-tables-1.0-r2.ebuild
blob: aa17736fffbff15f575d0eb3be60d3e146114666 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

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 )"
S="${WORKDIR}"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="+xpfast xpsmall +vistafree"
REQUIRED_USE="|| ( xpfast xpsmall vistafree )"

BDEPEND="app-arch/unzip"

src_unpack() {
	local i table
	for i in ${A}; do
		table=${i#tables_}
		table=${table%.zip}
		mkdir "${S}"/${table} || die
		cd $_ || die
		unpack "${i}"
	done
}

src_install() {
	insinto /usr/share/ophcrack
	doins -r .
}