From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2050B1582EF for ; Mon, 10 Mar 2025 13:46:24 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 0707C343051 for ; Mon, 10 Mar 2025 13:46:24 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 4B13911037D; Mon, 10 Mar 2025 13:46:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 bobolink.gentoo.org (Postfix) with ESMTPS id 3FD5D11037D for ; Mon, 10 Mar 2025 13:46:20 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C494D343026 for ; Mon, 10 Mar 2025 13:46:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F82A122C for ; Mon, 10 Mar 2025 13:46:18 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1741614317.d7e799505fde667155d0238179b685f934011d63.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/opusfile/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/opusfile/opusfile-0.12-r1.ebuild X-VCS-Directories: media-libs/opusfile/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: d7e799505fde667155d0238179b685f934011d63 X-VCS-Branch: master Date: Mon, 10 Mar 2025 13:46: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: a6f8cbf7-f565-4e25-9021-2e0873f8360d X-Archives-Hash: 93d83a6be1a7faf2c99f3359cd8499a7 commit: d7e799505fde667155d0238179b685f934011d63 Author: Ionen Wolkens gentoo org> AuthorDate: Mon Mar 10 13:30:41 2025 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Mon Mar 10 13:45:17 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7e79950 media-libs/opusfile: add multilib support Needed by media-libs/sdl2-mixer Signed-off-by: Ionen Wolkens gentoo.org> media-libs/opusfile/opusfile-0.12-r1.ebuild | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/media-libs/opusfile/opusfile-0.12-r1.ebuild b/media-libs/opusfile/opusfile-0.12-r1.ebuild index 1a2f0f67d628..4910b4acd381 100644 --- a/media-libs/opusfile/opusfile-0.12-r1.ebuild +++ b/media-libs/opusfile/opusfile-0.12-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit autotools +inherit autotools multilib-minimal DESCRIPTION="A high-level decoding and seeking API for .opus files" HOMEPAGE="https://www.opus-codec.org/" @@ -15,10 +15,10 @@ KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv sparc IUSE="doc fixed-point +float +http static-libs" RDEPEND=" - media-libs/libogg - media-libs/opus + media-libs/libogg[${MULTILIB_USEDEP}] + media-libs/opus[${MULTILIB_USEDEP}] http? ( - dev-libs/openssl:= + dev-libs/openssl:=[${MULTILIB_USEDEP}] ) " DEPEND="${RDEPEND}" @@ -37,18 +37,18 @@ src_prepare() { eautoreconf } -src_configure() { +multilib_src_configure() { local myeconfargs=( - $(use_enable doc) - $(use_enable fixed-point)\ + $(multilib_native_use_enable doc) + $(use_enable fixed-point) $(use_enable float) $(use_enable http) $(use_enable static-libs static) ) - econf "${myeconfargs[@]}" + ECONF_SOURCE=${S} econf "${myeconfargs[@]}" } -src_install() { - default +multilib_src_install_all() { + einstalldocs find "${ED}" -type f -name "*.la" -delete || die }