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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C3890158094 for ; Fri, 15 Jul 2022 07:58:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4EDEDE0FA3; Fri, 15 Jul 2022 07:58:23 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 328ABE0FA3 for ; Fri, 15 Jul 2022 07:58:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 494D03412EB for ; Fri, 15 Jul 2022 07:58:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89834448 for ; Fri, 15 Jul 2022 07:58:20 +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: <1657871878.10d563e62ba2a1995b3878100f75a1a2847c2e2d.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libmikmod/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libmikmod/libmikmod-3.3.11.1.ebuild X-VCS-Directories: media-libs/libmikmod/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 10d563e62ba2a1995b3878100f75a1a2847c2e2d X-VCS-Branch: master Date: Fri, 15 Jul 2022 07:58:20 +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: 82431e87-f494-4d02-acbb-ec0020c6ab6e X-Archives-Hash: fe2e3e9524cb00e906f197122660cb8f commit: 10d563e62ba2a1995b3878100f75a1a2847c2e2d Author: David Seifert gentoo org> AuthorDate: Fri Jul 15 07:57:58 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Jul 15 07:57:58 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10d563e6 media-libs/libmikmod: altivec -> cpu_flags_ppc_altivec Signed-off-by: David Seifert gentoo.org> media-libs/libmikmod/libmikmod-3.3.11.1.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/media-libs/libmikmod/libmikmod-3.3.11.1.ebuild b/media-libs/libmikmod/libmikmod-3.3.11.1.ebuild index 6210ef76f370..bb462fd8cdd0 100644 --- a/media-libs/libmikmod/libmikmod-3.3.11.1.ebuild +++ b/media-libs/libmikmod/libmikmod-3.3.11.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/mikmod/${P}.tar.gz" LICENSE="LGPL-2+ LGPL-2.1" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="+alsa altivec coreaudio debug nas openal oss pulseaudio cpu_flags_x86_sse2 static-libs +threads" +IUSE="+alsa coreaudio cpu_flags_ppc_altivec debug nas openal oss pulseaudio cpu_flags_x86_sse2 static-libs +threads" REQUIRED_USE="|| ( alsa coreaudio nas openal oss pulseaudio )" @@ -37,7 +37,7 @@ src_prepare() { multilib_src_configure() { local mysimd="--disable-simd" if use ppc || use ppc64 || use ppc-macos; then - mysimd="$(use_enable altivec simd)" + mysimd="$(use_enable cpu_flags_ppc_altivec simd)" fi if use amd64 || use x86 || use amd64-linux || use x86-linux || use x64-macos; then mysimd="$(use_enable cpu_flags_x86_sse2 simd)"