summaryrefslogtreecommitdiff
path: root/media-libs/opusfile/opusfile-0.12.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-12-23 13:59:28 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-12-23 13:59:28 +0000
commit1ffbeeb1643e9197d8a58c65a1d76bbaf3656292 (patch)
tree2cb5d912afaf290c355b58f8a7334b0e6c5277f0 /media-libs/opusfile/opusfile-0.12.ebuild
parent7819ef4baadbb9171070ce385f7051989fe64e49 (diff)
gentoo auto-resync : 23:12:2022 - 13:59:28
Diffstat (limited to 'media-libs/opusfile/opusfile-0.12.ebuild')
-rw-r--r--media-libs/opusfile/opusfile-0.12.ebuild40
1 files changed, 0 insertions, 40 deletions
diff --git a/media-libs/opusfile/opusfile-0.12.ebuild b/media-libs/opusfile/opusfile-0.12.ebuild
deleted file mode 100644
index 537e75f26b8b..000000000000
--- a/media-libs/opusfile/opusfile-0.12.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A high-level decoding and seeking API for .opus files"
-HOMEPAGE="https://www.opus-codec.org/"
-SRC_URI="https://downloads.xiph.org/releases/opus/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv sparc x86"
-IUSE="doc fixed-point +float +http static-libs"
-
-RDEPEND="media-libs/libogg
- media-libs/opus
- http? (
- dev-libs/openssl:0=
- )"
-
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
-
-REQUIRED_USE="^^ ( fixed-point float )"
-
-src_configure() {
- local myeconfargs=(
- $(use_enable doc)
- $(use_enable fixed-point)\
- $(use_enable float)
- $(use_enable http)
- $(use_enable static-libs static)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- find "${ED}" -type f -name "*.la" -delete || die
-}