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 2154D158086 for ; Sun, 14 Nov 2021 05:38:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 49A162BC016; Sun, 14 Nov 2021 05:38:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 4C0622BC016 for ; Sun, 14 Nov 2021 05:38:03 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 87678343401 for ; Sun, 14 Nov 2021 05:38:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 27A6F175 for ; Sun, 14 Nov 2021 05:38:01 +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: <1636868245.5d564bfd43936f5374fe9a7c008a765e5df18225.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/svt-av1/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/svt-av1/svt-av1-0.8.7.ebuild media-libs/svt-av1/svt-av1-9999.ebuild X-VCS-Directories: media-libs/svt-av1/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5d564bfd43936f5374fe9a7c008a765e5df18225 X-VCS-Branch: master Date: Sun, 14 Nov 2021 05:38:01 +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: 4829c0df-9329-4711-87d2-b85fc78c2d23 X-Archives-Hash: 9966ce2669cb46cf4ba39755850a8c5d commit: 5d564bfd43936f5374fe9a7c008a765e5df18225 Author: James Beddek posteo de> AuthorDate: Sun Nov 14 05:28:53 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Nov 14 05:37:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d564bfd media-libs/svt-av1: enable amd64 multilib Signed-off-by: James Beddek posteo.de> Closes: https://github.com/gentoo/gentoo/pull/22943 Signed-off-by: Sam James gentoo.org> media-libs/svt-av1/svt-av1-0.8.7.ebuild | 7 +++++-- media-libs/svt-av1/svt-av1-9999.ebuild | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/media-libs/svt-av1/svt-av1-0.8.7.ebuild b/media-libs/svt-av1/svt-av1-0.8.7.ebuild index 6a3a498cd40a..643a0d195303 100644 --- a/media-libs/svt-av1/svt-av1-0.8.7.ebuild +++ b/media-libs/svt-av1/svt-av1-0.8.7.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake flag-o-matic +inherit cmake-multilib flag-o-matic DESCRIPTION="Scalable Video Technology for AV1 (SVT-AV1 Encoder and Decoder)" HOMEPAGE="https://gitlab.com/AOMediaCodec/SVT-AV1" @@ -23,7 +23,7 @@ SLOT="0" BDEPEND="amd64? ( dev-lang/yasm )" -src_configure() { +multilib_src_configure() { append-ldflags -Wl,-z,noexecstack local mycmakeargs=( @@ -31,7 +31,10 @@ src_configure() { # undefined reference to `ifd_inspect' # https://github.com/Cidana-Developers/aom/commit/cfc5c9e95bcb48a5a41ca7908b44df34ea1313c0 -DBUILD_TESTING=OFF + -DCMAKE_OUTPUT_DIRECTORY="${BUILD_DIR}" ) + [[ ${ABI} != amd64 ]] && mycmakeargs+=( -DCOMPILE_C_ONLY=ON ) + cmake_src_configure } diff --git a/media-libs/svt-av1/svt-av1-9999.ebuild b/media-libs/svt-av1/svt-av1-9999.ebuild index 16b50d3407b7..5f5a2bb626bd 100644 --- a/media-libs/svt-av1/svt-av1-9999.ebuild +++ b/media-libs/svt-av1/svt-av1-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake flag-o-matic +inherit cmake-multilib flag-o-matic DESCRIPTION="Scalable Video Technology for AV1 (SVT-AV1 Encoder and Decoder)" HOMEPAGE="https://gitlab.com/AOMediaCodec/SVT-AV1" @@ -23,7 +23,7 @@ SLOT="0" BDEPEND="amd64? ( dev-lang/yasm )" -src_configure() { +multilib_src_configure() { append-ldflags -Wl,-z,noexecstack local mycmakeargs=( @@ -31,7 +31,10 @@ src_configure() { # undefined reference to `ifd_inspect' # https://github.com/Cidana-Developers/aom/commit/cfc5c9e95bcb48a5a41ca7908b44df34ea1313c0 -DBUILD_TESTING=OFF + -DCMAKE_OUTPUT_DIRECTORY="${BUILD_DIR}" ) + [[ ${ABI} != amd64 ]] && mycmakeargs+=( -DCOMPILE_C_ONLY=ON ) + cmake_src_configure }