diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2022-07-27 07:02:10 +0200 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2022-07-27 07:02:10 +0200 |
commit | d318b64c85d4233bc49315872da15f844e511f50 (patch) | |
tree | 53e6cd6bd1ee1b81d0ec0208eb8735e0a96c7c25 /media-libs/speex | |
parent | media-plugins/qmmp-plugin-pack: dropped obsolete 1.5.3 (diff) | |
download | gentoo-d318b64c85d4233bc49315872da15f844e511f50.tar.gz gentoo-d318b64c85d4233bc49315872da15f844e511f50.tar.bz2 gentoo-d318b64c85d4233bc49315872da15f844e511f50.zip |
media-libs/speex: dropped obsolete 1.2.0-r2
Bug: https://bugs.gentoo.org/861104
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-libs/speex')
-rw-r--r-- | media-libs/speex/Manifest | 1 | ||||
-rw-r--r-- | media-libs/speex/speex-1.2.0-r2.ebuild | 71 |
2 files changed, 0 insertions, 72 deletions
diff --git a/media-libs/speex/Manifest b/media-libs/speex/Manifest index ddba3d957b9c..9c6f5eaa652c 100644 --- a/media-libs/speex/Manifest +++ b/media-libs/speex/Manifest @@ -1,2 +1 @@ -DIST speex-1.2.0.tar.gz 1047080 BLAKE2B 928e044e1195d4d977497cd1275a07323df233ee85e3ec188f362720f96303c2fc2002c1147c2ac93ca03570ff98428d983eb7d00439c9cdbe131041d9aa2697 SHA512 7fe10838c7d1bafcbe42295b82b79262420dba793b8a4388e2f73a3007850b5572face1b5308d9f4e8d7dfc9cb1c016cbad88cd65b2892667986107ed946836b DIST speex-1.2.1.tar.gz 1043278 BLAKE2B 60afa7eb9ff87ebb1b69e2716b7fa6727b49f6c06ed6eb6fe81236c65dc4128769618dd1f4df31af56a00e9b766c4050c1b3e415c8f972d64d1fb9e7a537a650 SHA512 52e00300df82e1c7fb527b245af02b99a1f37faef74d004b7cd981052f1aa22a412cb18f5c7a5618df4c958f727c97eb7385beec99d68548d5b02e76192d4e0a diff --git a/media-libs/speex/speex-1.2.0-r2.ebuild b/media-libs/speex/speex-1.2.0-r2.ebuild deleted file mode 100644 index 610cbdba7d08..000000000000 --- a/media-libs/speex/speex-1.2.0-r2.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools flag-o-matic multilib-minimal - -MY_P=${P/_} -MY_P=${MY_P/_p/.} - -DESCRIPTION="Audio compression format designed for speech" -HOMEPAGE="https://www.speex.org/" -SRC_URI="https://downloads.xiph.org/releases/speex/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" -IUSE="cpu_flags_arm_v4 cpu_flags_arm_v5 cpu_flags_arm_v6 cpu_flags_x86_sse utils +vbr" - -RDEPEND=" - utils? ( - media-libs/libogg:= - media-libs/speexdsp[${MULTILIB_USEDEP}] - )" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -S="${WORKDIR}/${MY_P}" - -PATCHES=( "${FILESDIR}"/${P}-configure.patch ) - -src_prepare() { - default - - sed -i \ - -e 's:noinst_PROGRAMS:check_PROGRAMS:' \ - libspeex/Makefile.am || die - - eautoreconf -} - -multilib_src_configure() { - append-lfs-flags - - local FIXED_ARG="--disable-fixed-point" - local ARM4_ARG="--disable-arm4-asm" - local ARM5_ARG="--disable-arm5e-asm" - - if use arm && ! use cpu_flags_arm_v6; then - FIXED_ARG="--enable-fixed-point" - - if use cpu_flags_arm_v5; then - ARM5_ARG="--enable-arm5e-asm" - elif use cpu_flags_arm_v4; then - ARM4_ARG="--enable-arm4-asm" - fi - fi - - ECONF_SOURCE="${S}" econf \ - --disable-static \ - $(use_enable cpu_flags_x86_sse sse) \ - $(use_enable vbr) \ - $(use_with utils speexdsp) \ - $(use_enable utils binaries) \ - ${FIXED_ARG} ${ARM4_ARG} ${ARM5_ARG} -} - -multilib_src_install_all() { - einstalldocs - find "${ED}" -name '*.la' -type f -delete || die -} |