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 EF53A13835A for ; Sun, 23 Aug 2020 17:02:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0BE4E0827; Sun, 23 Aug 2020 17:01:59 +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 99089E0827 for ; Sun, 23 Aug 2020 17:01:59 +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 B52DE340A3B for ; Sun, 23 Aug 2020 17:01:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8979232F for ; Sun, 23 Aug 2020 17:01:53 +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: <1598202061.a1a0d0bdff3f372e0782625e9ec827d62a8a06a3.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/amd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/amd/amd-2.4.6.ebuild X-VCS-Directories: sci-libs/amd/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: a1a0d0bdff3f372e0782625e9ec827d62a8a06a3 X-VCS-Branch: master Date: Sun, 23 Aug 2020 17:01:53 +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: 0b88ad90-96e3-433b-8139-ba8d8d7f485e X-Archives-Hash: a58988337d51e9afdbf2442d0913990a commit: a1a0d0bdff3f372e0782625e9ec827d62a8a06a3 Author: David Seifert gentoo org> AuthorDate: Sun Aug 23 17:01:01 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Aug 23 17:01:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1a0d0bd sci-libs/amd: Remove libtool archives Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: David Seifert gentoo.org> sci-libs/amd/amd-2.4.6.ebuild | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/sci-libs/amd/amd-2.4.6.ebuild b/sci-libs/amd/amd-2.4.6.ebuild index 1a750e24652..e63da81355a 100644 --- a/sci-libs/amd/amd-2.4.6.ebuild +++ b/sci-libs/amd/amd-2.4.6.ebuild @@ -12,7 +12,7 @@ SRC_URI="http://202.36.178.9/sage/${P}.tar.bz2" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x86-macos" -IUSE="doc fortran static-libs" +IUSE="doc fortran" BDEPEND="virtual/pkgconfig doc? ( virtual/latex-base )" @@ -21,7 +21,14 @@ RDEPEND="${DEPEND}" src_configure() { econf \ + --disable-static \ $(use_enable fortran) \ - $(use_with doc) \ - $(use_enable static-libs static) + $(use_with doc) +} + +src_install() { + default + + # no static archives + find "${D}" -name '*.la' -delete || die }