From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3A9EE138334 for ; Thu, 29 Nov 2018 18:00:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0CB6CE0949; Thu, 29 Nov 2018 18:00:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C6FB6E0949 for ; Thu, 29 Nov 2018 18:00:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 32376335C47 for ; Thu, 29 Nov 2018 18:00:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5EF25455 for ; Thu, 29 Nov 2018 18:00:28 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1543514407.d330ce2803825ab2764d4009b36b8faf16c2925d.gokturk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/sleuthkit/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-forensics/sleuthkit/sleuthkit-4.6.4.ebuild X-VCS-Directories: app-forensics/sleuthkit/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: d330ce2803825ab2764d4009b36b8faf16c2925d X-VCS-Branch: master Date: Thu, 29 Nov 2018 18:00:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: efd3b9a3-a828-4289-b2e0-87a3f0e67117 X-Archives-Hash: 64ddefafc7d8c1f465e9b398a39d9d0f commit: d330ce2803825ab2764d4009b36b8faf16c2925d Author: Göktürk Yüksek gentoo org> AuthorDate: Thu Nov 29 17:59:44 2018 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Thu Nov 29 18:00:07 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d330ce28 app-forensics/sleuthkit: fix failure due to non-existing ivy home #672220 We do not need ivy because the dependency management is done in the ebuild. However, the build fails without an existing ivy home. Set it to ${T} to fix the issue. Closes: https://bugs.gentoo.org/672220 Signed-off-by: Göktürk Yüksek gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 app-forensics/sleuthkit/sleuthkit-4.6.4.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app-forensics/sleuthkit/sleuthkit-4.6.4.ebuild b/app-forensics/sleuthkit/sleuthkit-4.6.4.ebuild index 2ec1f680ac4..93c16837715 100644 --- a/app-forensics/sleuthkit/sleuthkit-4.6.4.ebuild +++ b/app-forensics/sleuthkit/sleuthkit-4.6.4.ebuild @@ -199,6 +199,9 @@ src_configure() { } src_compile() { + # Give it an existing bogus ivy home #672220 + local -x IVY_HOME="${T}" + # Create symlinks of jars for the required dependencies if use java; then pushd "${S}"/bindings/java &>/dev/null || die