summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pipping <sping@gentoo.org>2020-06-07 17:32:30 +0200
committerSebastian Pipping <sping@gentoo.org>2020-06-07 17:33:53 +0200
commit163e264dd0647897c9f69ddfa3ae3d3cb52e2139 (patch)
tree140f41b3515c87cbbbf5043d2aef3859120ae1a0 /media-libs
parentxfce-extra/xfce4-alsa-plugin: Bump to 0.3.0 (diff)
downloadgentoo-163e264dd0647897c9f69ddfa3ae3d3cb52e2139.tar.gz
gentoo-163e264dd0647897c9f69ddfa3ae3d3cb52e2139.tar.bz2
gentoo-163e264dd0647897c9f69ddfa3ae3d3cb52e2139.zip
media-libs/tremor: Drop vulnerable
Bug: https://bugs.gentoo.org/650656 Signed-off-by: Sebastian Pipping <sping@gentoo.org> Package-Manager: Portage-2.3.99, Repoman-2.3.22
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/tremor/tremor-0_pre20130223-r1.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/media-libs/tremor/tremor-0_pre20130223-r1.ebuild b/media-libs/tremor/tremor-0_pre20130223-r1.ebuild
deleted file mode 100644
index eb4cab721d89..000000000000
--- a/media-libs/tremor/tremor-0_pre20130223-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-# svn export http://svn.xiph.org/trunk/Tremor tremor-${PV}
-
-inherit autotools eutils multilib-minimal
-
-DESCRIPTION="A fixed-point version of the Ogg Vorbis decoder (also known as libvorbisidec)"
-HOMEPAGE="https://wiki.xiph.org/Tremor"
-SRC_URI="https://dev.gentoo.org/~ssuominen/${P}.tar.xz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86"
-IUSE="low-accuracy static-libs"
-
-RDEPEND=">=media-libs/libogg-1.3.0:=[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-DOCS=( "CHANGELOG" "README" )
-
-src_prepare() {
- sed -i \
- -e '/CFLAGS/s:-O2::' \
- -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' \
- configure.in || die
-
- eautoreconf
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" econf \
- $(use_enable static-libs static) \
- $(use_enable low-accuracy)
-}
-
-multilib_src_install_all() {
- einstalldocs
- dohtml -r doc/*
- find "${D}" -name '*.la' -type f -delete || die
-}