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 A7BA01382C5 for ; Thu, 7 Jan 2021 04:14:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ABE45E0844; Thu, 7 Jan 2021 04:14:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 944BDE0844 for ; Thu, 7 Jan 2021 04:14:39 +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 4F542341378 for ; Thu, 7 Jan 2021 04:14:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E1C8248D for ; Thu, 7 Jan 2021 04:14:36 +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: <1609992814.2fd8ff7c201e0bd870ed782de3beb4ece73aa6a9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libldac/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libldac/libldac-2.0.2.3.ebuild X-VCS-Directories: media-libs/libldac/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2fd8ff7c201e0bd870ed782de3beb4ece73aa6a9 X-VCS-Branch: master Date: Thu, 7 Jan 2021 04:14:36 +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: e54da8cc-ff44-43f5-8ed0-f23c1d654ad6 X-Archives-Hash: 259bf486da022b8577b701a2c88ebf87 commit: 2fd8ff7c201e0bd870ed782de3beb4ece73aa6a9 Author: Sam James gentoo org> AuthorDate: Thu Jan 7 04:13:19 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jan 7 04:13:34 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fd8ff7c media-libs/libldac: style changes Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> media-libs/libldac/libldac-2.0.2.3.ebuild | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/media-libs/libldac/libldac-2.0.2.3.ebuild b/media-libs/libldac/libldac-2.0.2.3.ebuild index 98474b9af7a..2be002228f1 100644 --- a/media-libs/libldac/libldac-2.0.2.3.ebuild +++ b/media-libs/libldac/libldac-2.0.2.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 2019-2020 Gentoo Authors +# Copyright 2019-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,18 +12,14 @@ SRC_URI="https://github.com/EHfive/ldacBT/releases/download/v${PV}/ldacBT-${PV}. LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" -BDEPEND="" S="${WORKDIR}/ldacBT" -src_prepare() { - cmake_src_prepare - mycmakeargs=( +src_configure() { + local mycmakeargs=( -DLDAC_SOFT_FLOAT=OFF -DINSTALL_LIBDIR=/usr/$(get_libdir) - ) + ) + + cmake_src_configure }