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 2BC4A138359 for ; Tue, 15 Sep 2020 13:23:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 683F1E0956; Tue, 15 Sep 2020 13:23:21 +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 502A5E0956 for ; Tue, 15 Sep 2020 13:23:21 +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 D816E340DCF for ; Tue, 15 Sep 2020 13:23:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61E90352 for ; Tue, 15 Sep 2020 13:23: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: <1600176178.dc3830ef602e9e00b8a711c5f0374ee6cfe2ccbd.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/scw/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/scw/scw-0.4.7-r1.ebuild x11-libs/scw/scw-0.4.7-r2.ebuild X-VCS-Directories: x11-libs/scw/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: dc3830ef602e9e00b8a711c5f0374ee6cfe2ccbd X-VCS-Branch: master Date: Tue, 15 Sep 2020 13:23: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: 6ee98025-2fea-4c96-8aac-933ff800103f X-Archives-Hash: 43ff3754746132e1710fe57a9d93a7e1 commit: dc3830ef602e9e00b8a711c5f0374ee6cfe2ccbd Author: David Seifert gentoo org> AuthorDate: Tue Sep 15 13:22:58 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Sep 15 13:22:58 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc3830ef x11-libs/scw: Disable static libraries Closes: https://bugs.gentoo.org/742659 Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: David Seifert gentoo.org> .../{scw-0.4.7-r1.ebuild => scw-0.4.7-r2.ebuild} | 23 ++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/x11-libs/scw/scw-0.4.7-r1.ebuild b/x11-libs/scw/scw-0.4.7-r2.ebuild similarity index 60% rename from x11-libs/scw/scw-0.4.7-r1.ebuild rename to x11-libs/scw/scw-0.4.7-r2.ebuild index 479049556df..a180f163479 100644 --- a/x11-libs/scw/scw-0.4.7-r1.ebuild +++ b/x11-libs/scw/scw-0.4.7-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -14,15 +14,22 @@ IUSE="doc" RDEPEND=" dev-libs/glib:2 - x11-libs/gtk+:2 -" -DEPEND=" - ${RDEPEND} - doc? ( dev-util/gtk-doc ) + x11-libs/gtk+:2" +DEPEND="${RDEPEND}" +BDEPEND=" dev-util/glib-utils virtual/pkgconfig -" + doc? ( dev-util/gtk-doc )" src_configure() { - econf $(use_enable doc gtk-doc) + econf \ + --disable-static \ + $(use_enable doc gtk-doc) +} + +src_install() { + default + + # no static archives + find "${ED}" -name '*.la' -delete || die }