summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiroslav Šulc <fordfrog@gentoo.org>2022-11-16 09:35:01 +0100
committerMiroslav Šulc <fordfrog@gentoo.org>2022-11-16 09:35:01 +0100
commit5adf2bcfaef5ad2a9e6aeebb96844ccb60f6b53f (patch)
treec2aa69d9f453c229cf9f2b15f5874a4a9502a445 /media-libs/tremor
parentwww-apps/wordpress: bump to 6.1.1, dropped 6.1 (diff)
downloadgentoo-5adf2bcfaef5ad2a9e6aeebb96844ccb60f6b53f.tar.gz
gentoo-5adf2bcfaef5ad2a9e6aeebb96844ccb60f6b53f.tar.bz2
gentoo-5adf2bcfaef5ad2a9e6aeebb96844ccb60f6b53f.zip
media-libs/tremor: dropped obsolete 0_pre20130223-r2
Bug: https://bugs.gentoo.org/881167 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-libs/tremor')
-rw-r--r--media-libs/tremor/tremor-0_pre20130223-r2.ebuild40
1 files changed, 0 insertions, 40 deletions
diff --git a/media-libs/tremor/tremor-0_pre20130223-r2.ebuild b/media-libs/tremor/tremor-0_pre20130223-r2.ebuild
deleted file mode 100644
index 1fa4c476ded3..000000000000
--- a/media-libs/tremor/tremor-0_pre20130223-r2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools 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 ~riscv sparc x86"
-IUSE="low-accuracy"
-
-RDEPEND=">=media-libs/libogg-1.3.0:=[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/${P}-out-of-bounds-write.patch
- "${FILESDIR}"/${P}-autoconf.patch
-)
-
-src_prepare() {
- default
- eautoreconf
-}
-
-multilib_src_configure() {
- ECONF_SOURCE="${S}" econf $(use_enable low-accuracy)
-}
-
-multilib_src_install_all() {
- HTML_DOCS=( doc/. )
- einstalldocs
-
- find "${ED}" -name '*.la' -type f -delete || die
-}