From 2038703a878d7761237905499c60adbbf40f00c2 Mon Sep 17 00:00:00 2001 From: Miroslav Šulc Date: Fri, 6 May 2022 08:21:44 +0200 Subject: media-libs/chromaprint: dropped obsolete 1.5.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: https://bugs.gentoo.org/842690 Signed-off-by: Miroslav Šulc --- media-libs/chromaprint/chromaprint-1.5.1.ebuild | 44 ------------------------- 1 file changed, 44 deletions(-) delete mode 100644 media-libs/chromaprint/chromaprint-1.5.1.ebuild (limited to 'media-libs') diff --git a/media-libs/chromaprint/chromaprint-1.5.1.ebuild b/media-libs/chromaprint/chromaprint-1.5.1.ebuild deleted file mode 100644 index 77fd5792ba01..000000000000 --- a/media-libs/chromaprint/chromaprint-1.5.1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -CMAKE_ECLASS=cmake -GTEST_VERSION="1.10.0" -GTEST_DIR_VERSION="1.10.x" -inherit cmake-multilib - -DESCRIPTION="Library implementing a custom algorithm for extracting audio fingerprints" -HOMEPAGE="https://acoustid.org/chromaprint" -SRC_URI="https://github.com/acoustid/${PN}/releases/download/v${PV}/${P}.tar.gz - test? ( https://github.com/google/googletest/archive/v$(ver_cut 1-2 ${GTEST_VERSION}).x.tar.gz -> gtest-${GTEST_VERSION}.tar.gz ) -" - -LICENSE="LGPL-2.1" -SLOT="0/1" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86" -IUSE="test tools" -RESTRICT="!test? ( test )" - -# note: use ffmpeg instead of fftw because it's recommended and required for tools -RDEPEND="media-video/ffmpeg:0=[${MULTILIB_USEDEP}] -" -DEPEND="${RDEPEND} - test? ( dev-cpp/gtest[${MULTILIB_USEDEP}] )" - -DOCS=( NEWS.txt README.md ) - -multilib_src_configure() { - export GTEST_ROOT="${WORKDIR}/googletest-${GTEST_DIR_VERSION}/googletest/" - local mycmakeargs=( - -DBUILD_TOOLS=$(multilib_native_usex tools ON OFF) - -DBUILD_TESTS=$(usex test ON OFF) - -DFFT_LIB=avfft - -DAUDIO_PROCESSOR_LIB="swresample" - ) - cmake_src_configure -} - -multilib_src_test() { - cd tests && (./all_tests || die "Tests failed") -} -- cgit v1.2.3-65-gdbad