Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libldac/
Date: Thu, 07 Jan 2021 04:14:40
Message-Id: 1609992814.2fd8ff7c201e0bd870ed782de3beb4ece73aa6a9.sam@gentoo
1 commit: 2fd8ff7c201e0bd870ed782de3beb4ece73aa6a9
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 7 04:13:19 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 7 04:13:34 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fd8ff7c
7
8 media-libs/libldac: style changes
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 media-libs/libldac/libldac-2.0.2.3.ebuild | 16 ++++++----------
14 1 file changed, 6 insertions(+), 10 deletions(-)
15
16 diff --git a/media-libs/libldac/libldac-2.0.2.3.ebuild b/media-libs/libldac/libldac-2.0.2.3.ebuild
17 index 98474b9af7a..2be002228f1 100644
18 --- a/media-libs/libldac/libldac-2.0.2.3.ebuild
19 +++ b/media-libs/libldac/libldac-2.0.2.3.ebuild
20 @@ -1,4 +1,4 @@
21 -# Copyright 2019-2020 Gentoo Authors
22 +# Copyright 2019-2021 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26 @@ -12,18 +12,14 @@ SRC_URI="https://github.com/EHfive/ldacBT/releases/download/v${PV}/ldacBT-${PV}.
27 LICENSE="Apache-2.0"
28 SLOT="0"
29 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
30 -IUSE=""
31 -
32 -DEPEND=""
33 -RDEPEND="${DEPEND}"
34 -BDEPEND=""
35
36 S="${WORKDIR}/ldacBT"
37
38 -src_prepare() {
39 - cmake_src_prepare
40 - mycmakeargs=(
41 +src_configure() {
42 + local mycmakeargs=(
43 -DLDAC_SOFT_FLOAT=OFF
44 -DINSTALL_LIBDIR=/usr/$(get_libdir)
45 - )
46 + )
47 +
48 + cmake_src_configure
49 }