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 EFD46138359 for ; Sat, 14 Nov 2020 20:22:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 335B1E0876; Sat, 14 Nov 2020 20:22:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 13EBEE0875 for ; Sat, 14 Nov 2020 20:22:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D6CB0341160 for ; Sat, 14 Nov 2020 20:22:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 756FC468 for ; Sat, 14 Nov 2020 20:22:09 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1605385198.9939ce30442ff32657864676b36f6de1786ecd34.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fabric/libibcm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fabric/libibcm/libibcm-1.0.5-r3.ebuild X-VCS-Directories: sys-fabric/libibcm/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 9939ce30442ff32657864676b36f6de1786ecd34 X-VCS-Branch: master Date: Sat, 14 Nov 2020 20:22:09 +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: 11837554-6bc4-422b-804f-0a2b7bdcdb46 X-Archives-Hash: 4c23523d9a120a568b3a62603d01d90e commit: 9939ce30442ff32657864676b36f6de1786ecd34 Author: Jakov Smolic sartura hr> AuthorDate: Sat Nov 14 20:19:58 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Nov 14 20:19:58 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9939ce30 sys-fabric/libibcm: disable static libs Closes: https://bugs.gentoo.org/725960 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> sys-fabric/libibcm/libibcm-1.0.5-r3.ebuild | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/sys-fabric/libibcm/libibcm-1.0.5-r3.ebuild b/sys-fabric/libibcm/libibcm-1.0.5-r3.ebuild index d335c5e20e6..14e31272f46 100644 --- a/sys-fabric/libibcm/libibcm-1.0.5-r3.ebuild +++ b/sys-fabric/libibcm/libibcm-1.0.5-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -17,3 +17,12 @@ IUSE="" RDEPEND="sys-fabric/libibverbs:${SLOT}" DEPEND="${RDEPEND}" block_other_ofed_versions + +src_configure() { + econf --disable-static +} + +src_install() { + default + find "${ED}" -name '*.la' -delete || die +}