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 880E915808B for ; Tue, 5 Apr 2022 04:57:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70C80E0918; Tue, 5 Apr 2022 04:57:24 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F31E2E0918 for ; Tue, 5 Apr 2022 04:57:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 D0D3234133B for ; Tue, 5 Apr 2022 04:57:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66D24177 for ; Tue, 5 Apr 2022 04:57:19 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1649134629.201ced25113b6d18370fc1b8edf777e9a7ad105b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/chromaprint/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/chromaprint/chromaprint-1.5.1-r1.ebuild media-libs/chromaprint/chromaprint-1.5.1-r2.ebuild X-VCS-Directories: media-libs/chromaprint/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 201ced25113b6d18370fc1b8edf777e9a7ad105b X-VCS-Branch: master Date: Tue, 5 Apr 2022 04:57:19 +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: 0b3019fd-bd29-448f-9489-704387a285bd X-Archives-Hash: 2804e746a142f1bf6ded200bad9337e5 commit: 201ced25113b6d18370fc1b8edf777e9a7ad105b Author: Sam James gentoo org> AuthorDate: Tue Apr 5 04:57:01 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Apr 5 04:57:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=201ced25 media-libs/chromaprint: fix tools installation Closes: https://bugs.gentoo.org/835808 Signed-off-by: Sam James gentoo.org> .../{chromaprint-1.5.1-r1.ebuild => chromaprint-1.5.1-r2.ebuild} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/media-libs/chromaprint/chromaprint-1.5.1-r1.ebuild b/media-libs/chromaprint/chromaprint-1.5.1-r2.ebuild similarity index 86% rename from media-libs/chromaprint/chromaprint-1.5.1-r1.ebuild rename to media-libs/chromaprint/chromaprint-1.5.1-r2.ebuild index 41f811d616ad..49d6e8970741 100644 --- a/media-libs/chromaprint/chromaprint-1.5.1-r1.ebuild +++ b/media-libs/chromaprint/chromaprint-1.5.1-r2.ebuild @@ -34,14 +34,14 @@ multilib_src_configure() { local mycmakeargs=( -DBUILD_TESTS=$(usex test) + -DBUILD_TOOLS=$(multilib_native_usex tools) -DFFT_LIB=$(usex tools 'avfft' 'fftw3') - - $(usev tools '-DAUDIO_PROCESSOR_LIB="swresample"') - + #-DAUDIO_PROCESSOR_LIB="swresample" + $(multilib_native_usex tools '-DAUDIO_PROCESSOR_LIB=swresample' '') # Automagicallyish looks for ffmpeg, but there's no point # even doing the check unless we're building with tools # (=> without fftw3, and with ffmpeg). - -DCMAKE_DISABLE_FIND_PACKAGE_FFmpeg=$(usex !tools) + -DCMAKE_DISABLE_FIND_PACKAGE_FFmpeg=$(multilib_native_usex !tools) ) cmake_src_configure