summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2020-02-10 16:37:08 +0100
committerDavid Seifert <soap@gentoo.org>2020-02-10 16:37:08 +0100
commitf9c8c2bd177b166ea1b50120c87fa3196a7cfcc9 (patch)
tree70ee4e560837d111e4ad03d812c8c67371dbbbec /media-libs/opus/opus-1.3.1.ebuild
parentdev-vcs/repo: version bump to 2.0 (diff)
downloadgentoo-f9c8c2bd177b166ea1b50120c87fa3196a7cfcc9.tar.gz
gentoo-f9c8c2bd177b166ea1b50120c87fa3196a7cfcc9.tar.bz2
gentoo-f9c8c2bd177b166ea1b50120c87fa3196a7cfcc9.zip
media-libs/opus: Remove old
Bug: https://bugs.gentoo.org/708322 Package-Manager: Portage-2.3.88, Repoman-2.3.20 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-libs/opus/opus-1.3.1.ebuild')
-rw-r--r--media-libs/opus/opus-1.3.1.ebuild38
1 files changed, 0 insertions, 38 deletions
diff --git a/media-libs/opus/opus-1.3.1.ebuild b/media-libs/opus/opus-1.3.1.ebuild
deleted file mode 100644
index eeda2865a899..000000000000
--- a/media-libs/opus/opus-1.3.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multilib-minimal
-
-DESCRIPTION="Open codec for interactive speech and music transmission over the Internet"
-HOMEPAGE="https://opus-codec.org/"
-SRC_URI="https://archive.mozilla.org/pub/opus/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-INTRINSIC_FLAGS="cpu_flags_x86_sse cpu_flags_arm_neon"
-IUSE="custom-modes doc static-libs ${INTRINSIC_FLAGS}"
-
-DEPEND="doc? (
- app-doc/doxygen
- media-gfx/graphviz
- )"
-
-multilib_src_configure() {
- local myeconfargs=(
- $(use_enable custom-modes)
- $(use_enable doc)
- $(use_enable static-libs static)
- )
- for i in ${INTRINSIC_FLAGS} ; do
- use ${i} && myeconfargs+=( --enable-intrinsics )
- done
- ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
-}
-
-multilib_src_install_all() {
- default
- find "${ED}" -name "*.la" -delete || die
-}