Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/ophcrack/
Date: Thu, 02 Jun 2022 03:00:13
Message-Id: 1654138800.8fbf6d64174136c982cfb0beaeddf07bf255bf61.sam@gentoo
1 commit: 8fbf6d64174136c982cfb0beaeddf07bf255bf61
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 2 02:59:29 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 2 03:00:00 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fbf6d64
7
8 app-crypt/ophcrack: fix finding qmake
9
10 Closes: https://bugs.gentoo.org/765229
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 app-crypt/ophcrack/ophcrack-3.8.0.ebuild | 7 +++++--
14 1 file changed, 5 insertions(+), 2 deletions(-)
15
16 diff --git a/app-crypt/ophcrack/ophcrack-3.8.0.ebuild b/app-crypt/ophcrack/ophcrack-3.8.0.ebuild
17 index e6f536daf1ab..c74837410a94 100644
18 --- a/app-crypt/ophcrack/ophcrack-3.8.0.ebuild
19 +++ b/app-crypt/ophcrack/ophcrack-3.8.0.ebuild
20 @@ -1,9 +1,9 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 +# Copyright 1999-2022 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26
27 -inherit desktop toolchain-funcs
28 +inherit desktop toolchain-funcs qmake-utils
29
30 DESCRIPTION="A time-memory-trade-off-cracker"
31 HOMEPAGE="https://ophcrack.sourceforge.io/"
32 @@ -34,6 +34,9 @@ PATCHES=( "${FILESDIR}"/ophcrack-ar.patch )
33 src_configure() {
34 tc-export AR
35
36 + # bug #765229
37 + export PATH="$(qt5_get_bindir):${PATH}"
38 +
39 econf \
40 $(use_enable debug) \
41 $(use_enable qt5 gui)