commit: 4d283d31408709330806ccc6c932f59e683d347e
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 9 19:51:28 2024 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Nov 10 09:30:44 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d283d31
media-libs/soxr: drop 0.1.3-r1
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-libs/soxr/soxr-0.1.3-r1.ebuild | 47 ------------------------------------
1 file changed, 47 deletions(-)
diff --git a/media-libs/soxr/soxr-0.1.3-r1.ebuild
b/media-libs/soxr/soxr-0.1.3-r1.ebuild
deleted file mode 100644
index ec602f3abda1..000000000000
--- a/media-libs/soxr/soxr-0.1.3-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake-multilib
-
-MY_P="${P}-Source"
-DESCRIPTION="SoX Resampler library"
-HOMEPAGE="https://sourceforge.net/p/soxr/wiki/Home/"
-SRC_URI="https://downloads.sourceforge.net/soxr/${MY_P}.tar.xz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv sparc x86"
-IUSE="examples test"
-
-# CMakeLists.txt builds examples if either test or examples USE flag is
enabled.
-REQUIRED_USE="test? ( examples )"
-RESTRICT="!test? ( test )"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
- "${FILESDIR}/${PN}-0.1.1-nodoc.patch"
- "${FILESDIR}/${P}-fix-pkgconfig.patch"
-)
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_EXAMPLES="$(usex examples)"
- -DBUILD_TESTS="$(usex test)"
- )
- if use examples ; then
- mycmakeargs+=(
- -DDOC_INSTALL_DIR="/usr/share/doc/${PF}"
- )
- fi
- cmake-multilib_src_configure
-}
-
-src_install() {
- cmake-multilib_src_install
- if use examples ; then
- docompress -x /usr/share/doc/${PF}/examples
- fi
-}