Install this version:
emerge -a =app-crypt/ophcrack-tables-1.0
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-crypt/ophcrack-tables-1.0
Or alternatively:
emerge --autounmask-write -a =app-crypt/ophcrack-tables-1.0
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Tables available for ophcrack"
HOMEPAGE="https://ophcrack.sourceforge.io"
SRC_URI="
xpfast? ( https://downloads.sourceforge.net/ophcrack/tables_xp_free_fast.zip )
xpsmall? ( https://downloads.sourceforge.net/ophcrack/tables_xp_free_small.zip )
vistafree? ( https://downloads.sourceforge.net/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 .
}
Manage flags for this package:
euse -i <flag> -p app-crypt/ophcrack-tables |
euse -E <flag> -p app-crypt/ophcrack-tables |
euse -D <flag> -p app-crypt/ophcrack-tables
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | tables_vista_free.zip | 410609902 bytes | https://downloads.sourceforge.net/ophcrack/tables_vista_free.zip |
| DIST | tables_xp_free_fast.zip | 701901509 bytes | https://downloads.sourceforge.net/ophcrack/tables_xp_free_fast.zip |
| DIST | tables_xp_free_small.zip | 370848194 bytes | https://downloads.sourceforge.net/ophcrack/tables_xp_free_small.zip |