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 CCF88138334 for ; Wed, 1 Jan 2020 11:03:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F2F08E0917; Wed, 1 Jan 2020 11:03:20 +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 D63C2E0917 for ; Wed, 1 Jan 2020 11:03:20 +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 01CDC34DE0F for ; Wed, 1 Jan 2020 11:03:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0D3374 for ; Wed, 1 Jan 2020 11:03:18 +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: <1577876590.09bf573ba60af609d172744fe89185ef58f76f0b.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/mpfi/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/mpfi/mpfi-1.5.3.ebuild X-VCS-Directories: sci-libs/mpfi/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 09bf573ba60af609d172744fe89185ef58f76f0b X-VCS-Branch: master Date: Wed, 1 Jan 2020 11:03:18 +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: 14f997e6-d1e9-4765-b6bc-981a0c4ffec5 X-Archives-Hash: 43d875f895de72dd959db98e1e4c8ee9 commit: 09bf573ba60af609d172744fe89185ef58f76f0b Author: David Seifert gentoo org> AuthorDate: Wed Jan 1 11:03:10 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Jan 1 11:03:10 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09bf573b sci-libs/mpfi: Remove USE="static-libs" Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> sci-libs/mpfi/mpfi-1.5.3.ebuild | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/sci-libs/mpfi/mpfi-1.5.3.ebuild b/sci-libs/mpfi/mpfi-1.5.3.ebuild index f3981fb6316..f1c184f6bfe 100644 --- a/sci-libs/mpfi/mpfi-1.5.3.ebuild +++ b/sci-libs/mpfi/mpfi-1.5.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,7 +12,6 @@ SRC_URI="https://gforge.inria.fr/frs/download.php/37331/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="static-libs" DEPEND=" >=dev-libs/gmp-4.1.2:0= @@ -20,14 +19,12 @@ DEPEND=" RDEPEND="${DEPEND}" my_src_configure() { - ECONF_SOURCE="${S}" econf \ - $(use_enable static-libs static) + econf --disable-static } my_src_install() { default - if ! use static-libs; then - find "${D}" -name '*.la' -delete || die - fi + # no static archives + find "${D}" -name '*.la' -delete || die }