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 02181138334 for ; Sun, 20 Oct 2019 13:33:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4AABCE0AB9; Sun, 20 Oct 2019 13:33:17 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 2F4A9E0AB9 for ; Sun, 20 Oct 2019 13:33: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 0C50634C0B0 for ; Sun, 20 Oct 2019 13:33:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 634F276A for ; Sun, 20 Oct 2019 13:33:14 +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: <1571578356.3525dec4310a095becff4353139532c9356d5ac7.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/zimg/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/zimg/zimg-2.8.ebuild media-libs/zimg/zimg-9999.ebuild X-VCS-Directories: media-libs/zimg/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 3525dec4310a095becff4353139532c9356d5ac7 X-VCS-Branch: master Date: Sun, 20 Oct 2019 13:33:14 +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: 2c1517a2-9e00-4494-8640-46b385a1d7dc X-Archives-Hash: 5e3dffc688b0a5f3da29ed372ba89c41 commit: 3525dec4310a095becff4353139532c9356d5ac7 Author: Alessandro Barbieri gmail com> AuthorDate: Sun Oct 6 23:45:31 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Oct 20 13:32:36 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3525dec4 media-libs/zimg: disable static libraries Closes: https://bugs.gentoo.org/694132 Closes: https://github.com/gentoo/gentoo/pull/13059 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Alessandro Barbieri gmail.com> Signed-off-by: David Seifert gentoo.org> media-libs/zimg/zimg-2.8.ebuild | 3 ++- media-libs/zimg/zimg-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/media-libs/zimg/zimg-2.8.ebuild b/media-libs/zimg/zimg-2.8.ebuild index 5108ffad512..7207d746344 100644 --- a/media-libs/zimg/zimg-2.8.ebuild +++ b/media-libs/zimg/zimg-2.8.ebuild @@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg" LICENSE="WTFPL-2" SLOT="0" -IUSE="static-libs cpu_flags_x86_sse" +IUSE="cpu_flags_x86_sse" src_prepare() { default @@ -27,5 +27,6 @@ src_prepare() { multilib_src_configure() { ECONF_SOURCE="${S}" econf \ + --disable-static \ $(use_enable cpu_flags_x86_sse x86simd) } diff --git a/media-libs/zimg/zimg-9999.ebuild b/media-libs/zimg/zimg-9999.ebuild index d20d4bf5840..2e9348c76c5 100644 --- a/media-libs/zimg/zimg-9999.ebuild +++ b/media-libs/zimg/zimg-9999.ebuild @@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/sekrit-twc/zimg" LICENSE="WTFPL-2" SLOT="0" -IUSE="static-libs cpu_flags_x86_sse" +IUSE="cpu_flags_x86_sse" src_prepare() { default @@ -27,5 +27,6 @@ src_prepare() { multilib_src_configure() { ECONF_SOURCE="${S}" econf \ + --disable-static \ $(use_enable cpu_flags_x86_sse x86simd) }