Gentoo Archives: gentoo-commits

From: "Göktürk Yüksek" <gokturk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/sleuthkit/
Date: Thu, 29 Nov 2018 18:00:35
Message-Id: 1543514407.d330ce2803825ab2764d4009b36b8faf16c2925d.gokturk@gentoo
1 commit: d330ce2803825ab2764d4009b36b8faf16c2925d
2 Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 29 17:59:44 2018 +0000
4 Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 29 18:00:07 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d330ce28
7
8 app-forensics/sleuthkit: fix failure due to non-existing ivy home #672220
9
10 We do not need ivy because the dependency management is done in the
11 ebuild. However, the build fails without an existing ivy home. Set it
12 to ${T} to fix the issue.
13
14 Closes: https://bugs.gentoo.org/672220
15 Signed-off-by: Göktürk Yüksek <gokturk <AT> gentoo.org>
16 Package-Manager: Portage-2.3.51, Repoman-2.3.11
17
18 app-forensics/sleuthkit/sleuthkit-4.6.4.ebuild | 3 +++
19 1 file changed, 3 insertions(+)
20
21 diff --git a/app-forensics/sleuthkit/sleuthkit-4.6.4.ebuild b/app-forensics/sleuthkit/sleuthkit-4.6.4.ebuild
22 index 2ec1f680ac4..93c16837715 100644
23 --- a/app-forensics/sleuthkit/sleuthkit-4.6.4.ebuild
24 +++ b/app-forensics/sleuthkit/sleuthkit-4.6.4.ebuild
25 @@ -199,6 +199,9 @@ src_configure() {
26 }
27
28 src_compile() {
29 + # Give it an existing bogus ivy home #672220
30 + local -x IVY_HOME="${T}"
31 +
32 # Create symlinks of jars for the required dependencies
33 if use java; then
34 pushd "${S}"/bindings/java &>/dev/null || die