gentoo-ebuilds/app-crypt/ophcrack/ophcrack-3.8.0-r2.ebuild
Andreas Sturmlechner 9a63151898
app-crypt/ophcrack: Drop IUSE gui (Qt5 based) option
Closes: https://bugs.gentoo.org/960797
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
2025-08-17 22:23:10 +02:00

36 lines
688 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools xdg
DESCRIPTION="A time-memory-trade-off-cracker"
HOMEPAGE="https://ophcrack.sourceforge.io/"
SRC_URI="https://downloads.sourceforge.net/project/${PN}/${PN}/${PV}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+tables"
DEPEND="
dev-libs/expat
dev-libs/openssl:=
net-libs/netwib"
RDEPEND="${DEPEND}
tables? ( app-crypt/ophcrack-tables )"
BDEPEND="
app-arch/unzip
virtual/pkgconfig"
PATCHES=( "${FILESDIR}"/${P}-buildsystem.patch )
src_prepare() {
default
eautoreconf
}
src_configure() {
econf --disable-gui # bug 960797
}