diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-02-14 23:16:32 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-02-14 23:16:32 +0100 |
commit | 487d93e39e3725f1fb07c718a19fffd58ada38a4 (patch) | |
tree | b38c9668fbe467110c4d7d654f9dfd78a1128f36 /media-libs/soxr | |
parent | dev-libs/xerces-c: Drop 3.2.2-r1 (diff) | |
download | gentoo-487d93e39e3725f1fb07c718a19fffd58ada38a4.tar.gz gentoo-487d93e39e3725f1fb07c718a19fffd58ada38a4.tar.bz2 gentoo-487d93e39e3725f1fb07c718a19fffd58ada38a4.zip |
media-libs/soxr: Switch to CMAKE_ECLASS=cmake
Closes: https://bugs.gentoo.org/770538
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-libs/soxr')
-rw-r--r-- | media-libs/soxr/soxr-0.1.3-r1.ebuild | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/media-libs/soxr/soxr-0.1.3-r1.ebuild b/media-libs/soxr/soxr-0.1.3-r1.ebuild index afc642ea6234..e969cfb04de4 100644 --- a/media-libs/soxr/soxr-0.1.3-r1.ebuild +++ b/media-libs/soxr/soxr-0.1.3-r1.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +CMAKE_ECLASS=cmake inherit cmake-multilib MY_P="${P}-Source" @@ -14,18 +15,16 @@ LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86" IUSE="examples test" -RESTRICT="!test? ( test )" # CMakeLists.txt builds examples if either test or examples USE flag is enabled. REQUIRED_USE="test? ( examples )" +RESTRICT="!test? ( test )" DEPEND="" RDEPEND="${DEPEND}" S="${WORKDIR}/${MY_P}" -DOCS=( README TODO NEWS AUTHORS ) - PATCHES=( "${FILESDIR}/${PN}-0.1.1-nodoc.patch" "${FILESDIR}/${P}-fix-pkgconfig.patch" |