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 EA2EA138359 for ; Sun, 27 Sep 2020 19:33:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 070EFE0798; Sun, 27 Sep 2020 19:33:07 +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 DA274E0798 for ; Sun, 27 Sep 2020 19:33:06 +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 125ED340DEE for ; Sun, 27 Sep 2020 19:33:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BCDF373 for ; Sun, 27 Sep 2020 19:33:01 +0000 (UTC) From: "Sven Wegener" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Wegener" Message-ID: <1601235114.5c9ca60ff0ed9993d497199e51be7074f99cbacd.swegener@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/libjaylink/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-embedded/libjaylink/libjaylink-9999.ebuild X-VCS-Directories: dev-embedded/libjaylink/ X-VCS-Committer: swegener X-VCS-Committer-Name: Sven Wegener X-VCS-Revision: 5c9ca60ff0ed9993d497199e51be7074f99cbacd X-VCS-Branch: master Date: Sun, 27 Sep 2020 19:33:01 +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: 2d68cb2c-3a07-4de0-adc4-759efc34c356 X-Archives-Hash: 4ec9777201f42441f8f47772b6dbfa6e commit: 5c9ca60ff0ed9993d497199e51be7074f99cbacd Author: Sven Wegener gentoo org> AuthorDate: Sun Sep 27 19:18:40 2020 +0000 Commit: Sven Wegener gentoo org> CommitDate: Sun Sep 27 19:31:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c9ca60f dev-embedded/libjaylink: Add multilib support to live ebuild Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sven Wegener gentoo.org> dev-embedded/libjaylink/libjaylink-9999.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-embedded/libjaylink/libjaylink-9999.ebuild b/dev-embedded/libjaylink/libjaylink-9999.ebuild index 9190af8cdbc..591ce6e4d7b 100644 --- a/dev-embedded/libjaylink/libjaylink-9999.ebuild +++ b/dev-embedded/libjaylink/libjaylink-9999.ebuild @@ -5,7 +5,7 @@ EAPI="7" EGIT_REPO_URI="https://gitlab.zapb.de/libjaylink/libjaylink.git" -inherit git-r3 autotools +inherit git-r3 autotools multilib-minimal DESCRIPTION="Library to access J-Link devices" HOMEPAGE="https://gitlab.zapb.de/libjaylink/libjaylink" @@ -15,19 +15,19 @@ SLOT="0" KEYWORDS="" IUSE="static-libs" -DEPEND="virtual/libusb:1" +DEPEND="virtual/libusb:1[${MULTILIB_USEDEP}]" RDEPEND="${DEPEND}" src_prepare() { eapply_user eautoreconf + multilib_copy_sources } -src_configure() { +multilib_src_configure() { econf $(use_enable static-libs static) } -src_install() { - default +multilib_src_install_all() { use static-libs || find "${D}" -name '*.la' -delete || die }