Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/speex/
Date: Sat, 25 Jun 2022 09:17:18
Message-Id: 1656148632.9ca1ee15663a0a1b92c9f34dc120cc2465fe4cbc.fordfrog@gentoo
1 commit: 9ca1ee15663a0a1b92c9f34dc120cc2465fe4cbc
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 25 09:17:08 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 25 09:17:12 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ca1ee15
7
8 media-libs/speex: bump to 1.2.1, eapi8
9
10 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
11
12 media-libs/speex/Manifest | 1 +
13 media-libs/speex/speex-1.2.1.ebuild | 71 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 72 insertions(+)
15
16 diff --git a/media-libs/speex/Manifest b/media-libs/speex/Manifest
17 index 2f4a54298789..ddba3d957b9c 100644
18 --- a/media-libs/speex/Manifest
19 +++ b/media-libs/speex/Manifest
20 @@ -1 +1,2 @@
21 DIST speex-1.2.0.tar.gz 1047080 BLAKE2B 928e044e1195d4d977497cd1275a07323df233ee85e3ec188f362720f96303c2fc2002c1147c2ac93ca03570ff98428d983eb7d00439c9cdbe131041d9aa2697 SHA512 7fe10838c7d1bafcbe42295b82b79262420dba793b8a4388e2f73a3007850b5572face1b5308d9f4e8d7dfc9cb1c016cbad88cd65b2892667986107ed946836b
22 +DIST speex-1.2.1.tar.gz 1043278 BLAKE2B 60afa7eb9ff87ebb1b69e2716b7fa6727b49f6c06ed6eb6fe81236c65dc4128769618dd1f4df31af56a00e9b766c4050c1b3e415c8f972d64d1fb9e7a537a650 SHA512 52e00300df82e1c7fb527b245af02b99a1f37faef74d004b7cd981052f1aa22a412cb18f5c7a5618df4c958f727c97eb7385beec99d68548d5b02e76192d4e0a
23
24 diff --git a/media-libs/speex/speex-1.2.1.ebuild b/media-libs/speex/speex-1.2.1.ebuild
25 new file mode 100644
26 index 000000000000..c8a727c5743d
27 --- /dev/null
28 +++ b/media-libs/speex/speex-1.2.1.ebuild
29 @@ -0,0 +1,71 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit autotools flag-o-matic multilib-minimal
36 +
37 +MY_P=${P/_}
38 +MY_P=${MY_P/_p/.}
39 +
40 +DESCRIPTION="Audio compression format designed for speech"
41 +HOMEPAGE="https://www.speex.org/"
42 +SRC_URI="https://downloads.xiph.org/releases/speex/${MY_P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +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"
47 +IUSE="cpu_flags_arm_v4 cpu_flags_arm_v5 cpu_flags_arm_v6 cpu_flags_x86_sse utils +vbr"
48 +
49 +RDEPEND="
50 + utils? (
51 + media-libs/libogg:=
52 + media-libs/speexdsp[${MULTILIB_USEDEP}]
53 + )"
54 +DEPEND="${RDEPEND}"
55 +BDEPEND="virtual/pkgconfig"
56 +
57 +S="${WORKDIR}/${MY_P}"
58 +
59 +PATCHES=( "${FILESDIR}"/${PN}-1.2.0-configure.patch )
60 +
61 +src_prepare() {
62 + default
63 +
64 + sed -i \
65 + -e 's:noinst_PROGRAMS:check_PROGRAMS:' \
66 + libspeex/Makefile.am || die
67 +
68 + eautoreconf
69 +}
70 +
71 +multilib_src_configure() {
72 + append-lfs-flags
73 +
74 + local FIXED_ARG="--disable-fixed-point"
75 + local ARM4_ARG="--disable-arm4-asm"
76 + local ARM5_ARG="--disable-arm5e-asm"
77 +
78 + if use arm && ! use cpu_flags_arm_v6; then
79 + FIXED_ARG="--enable-fixed-point"
80 +
81 + if use cpu_flags_arm_v5; then
82 + ARM5_ARG="--enable-arm5e-asm"
83 + elif use cpu_flags_arm_v4; then
84 + ARM4_ARG="--enable-arm4-asm"
85 + fi
86 + fi
87 +
88 + ECONF_SOURCE="${S}" econf \
89 + --disable-static \
90 + $(use_enable cpu_flags_x86_sse sse) \
91 + $(use_enable vbr) \
92 + $(use_with utils speexdsp) \
93 + $(use_enable utils binaries) \
94 + ${FIXED_ARG} ${ARM4_ARG} ${ARM5_ARG}
95 +}
96 +
97 +multilib_src_install_all() {
98 + einstalldocs
99 + find "${ED}" -name '*.la' -type f -delete || die
100 +}