commit: 9a63151898e57b5ca5757abb8fcb1b223c9c1027 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Sun Aug 17 18:13:36 2025 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sun Aug 17 20:23:10 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a631518
app-crypt/ophcrack: Drop IUSE gui (Qt5 based) option Closes: https://bugs.gentoo.org/960797 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> app-crypt/ophcrack/ophcrack-3.8.0-r2.ebuild | 36 +++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/app-crypt/ophcrack/ophcrack-3.8.0-r2.ebuild b/app-crypt/ophcrack/ophcrack-3.8.0-r2.ebuild new file mode 100644 index 000000000000..dc9c066f585d --- /dev/null +++ b/app-crypt/ophcrack/ophcrack-3.8.0-r2.ebuild @@ -0,0 +1,36 @@ +# 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 +}
