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 3BEB9138334 for ; Mon, 18 Jun 2018 11:40:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BAE04E08E5; Mon, 18 Jun 2018 11:40:27 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 87178E08E5 for ; Mon, 18 Jun 2018 11:40:27 +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 4B63D335C8D for ; Mon, 18 Jun 2018 11:40:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 943182E0 for ; Mon, 18 Jun 2018 11:40:23 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1529322016.3d6334cf017b80b0f48a0aaef540b79f865fbfd3.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/strace/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/strace/strace-9999.ebuild X-VCS-Directories: dev-util/strace/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 3d6334cf017b80b0f48a0aaef540b79f865fbfd3 X-VCS-Branch: master Date: Mon, 18 Jun 2018 11:40:23 +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-Archives-Salt: ff5e8972-83f9-44e9-8884-1c972a466d0d X-Archives-Hash: 4d38e5fd9da1c10dce0ad8813bae0035 commit: 3d6334cf017b80b0f48a0aaef540b79f865fbfd3 Author: Thomas Deutschmann gentoo org> AuthorDate: Mon Jun 18 11:40:16 2018 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Mon Jun 18 11:40:16 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d6334cf dev-util/strace: update live ebuild Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-util/strace/strace-9999.ebuild | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/dev-util/strace/strace-9999.ebuild b/dev-util/strace/strace-9999.ebuild index f9e3966c500..bac8d4b752b 100644 --- a/dev-util/strace/strace-9999.ebuild +++ b/dev-util/strace/strace-9999.ebuild @@ -18,9 +18,14 @@ HOMEPAGE="https://strace.io/" LICENSE="BSD" SLOT="0" -IUSE="aio perl static unwind" +IUSE="aio perl static unwind elfutils" -LIB_DEPEND="unwind? ( sys-libs/libunwind[static-libs(+)] )" +REQUIRED_USE="?? ( unwind elfutils )" + +LIB_DEPEND=" + unwind? ( sys-libs/libunwind[static-libs(+)] ) + elfutils? ( dev-libs/elfutils[static-libs(+)] ) +" # strace only uses the header from libaio to decode structs DEPEND=" static? ( ${LIB_DEPEND} ) @@ -66,7 +71,8 @@ src_configure() { # Don't require mpers support on non-multilib systems. #649560 econf \ --enable-mpers=check \ - $(use_with unwind libunwind) + $(use_with unwind libunwind) \ + $(use_with elfutils libdw) } src_test() { @@ -80,6 +86,6 @@ src_test() { src_install() { default - use perl || rm "${ED}"/usr/bin/strace-graph + use perl || rm "${ED%/}"/usr/bin/strace-graph dodoc CREDITS }