Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/faad2/
Date: Sat, 26 Oct 2019 20:14:20
Message-Id: 1572120846.28ed452f4ad9a6a5ee8a1edd31bf8d68834a7b06.whissi@gentoo
1 commit: 28ed452f4ad9a6a5ee8a1edd31bf8d68834a7b06
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 26 20:13:36 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 26 20:14:06 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28ed452f
7
8 media-libs/faad2: bump to v2.9.0
9
10 Bug: https://bugs.gentoo.org/695540
11 Package-Manager: Portage-2.3.78, Repoman-2.3.17
12 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
13
14 media-libs/faad2/Manifest | 1 +
15 media-libs/faad2/faad2-2.9.0.ebuild | 55 +++++++++++++++++++++++++++++++++++++
16 2 files changed, 56 insertions(+)
17
18 diff --git a/media-libs/faad2/Manifest b/media-libs/faad2/Manifest
19 index 7f9837c8098..5c9c31d072c 100644
20 --- a/media-libs/faad2/Manifest
21 +++ b/media-libs/faad2/Manifest
22 @@ -1 +1,2 @@
23 DIST faad2-2.8.8.tar.gz 1069044 BLAKE2B 3e22e695d89cce0ecb673caec73dd3115b2249d18daf6d0c8cf2b5cc90086889c9da733e037bc8b58c0bdc145c66bd4218b9b5e237adb7ad1c6f0caf0d97d304 SHA512 3275d292b2a9fe984842962f4d81202894bddd17033f7cd6df95466554cc968dfcbf2890ae8b1df37da0cd25d645cca0a687f07e39b9fc37dd004fd5956a82af
24 +DIST faad2-2.9.0.tar.gz 802390 BLAKE2B 8cd68f96a48fefcc4d75901ae67607ec4cc4c4a76efae490dcfb3330b384ff91049894af9fccae0b41ca9fd4ef22cdff35c36f11cea1baab4cc96fe1e54749ae SHA512 1756b2672f9e438a56b11160ddc77fc721d85860eaa325a3ff01b51a2524baf4c1c61068a97cbc4e99d47e7643f10e1d6afb997eede3295b44551fe4661fb5dc
25
26 diff --git a/media-libs/faad2/faad2-2.9.0.ebuild b/media-libs/faad2/faad2-2.9.0.ebuild
27 new file mode 100644
28 index 00000000000..6efca3713ab
29 --- /dev/null
30 +++ b/media-libs/faad2/faad2-2.9.0.ebuild
31 @@ -0,0 +1,55 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit autotools multilib-minimal
38 +
39 +MY_PV=$(ver_rs 1- _)
40 +
41 +DESCRIPTION="AAC audio decoding library"
42 +HOMEPAGE="https://www.audiocoding.com/faad2.html"
43 +SRC_URI="https://github.com/knik0/faad2/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="GPL-2+"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
48 +IUSE="digitalradio static-libs"
49 +
50 +RDEPEND=""
51 +DEPEND=""
52 +
53 +DOCS=( AUTHORS ChangeLog NEWS README TODO )
54 +
55 +S="${WORKDIR}/${PN}-${MY_PV}"
56 +
57 +src_prepare() {
58 + default
59 +
60 + sed -i -e 's:iquote :I:' libfaad/Makefile.am || die
61 +
62 + # bug 466986
63 + sed -i 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.ac || die
64 +
65 + eautoreconf
66 +}
67 +
68 +multilib_src_configure() {
69 + local myconf=(
70 + --without-xmms
71 + $(use_with digitalradio drm)
72 + $(use_enable static-libs static)
73 + )
74 +
75 + ECONF_SOURCE="${S}" econf "${myconf[@]}"
76 +
77 + # do not build the frontend for non default abis
78 + if [ "${ABI}" != "${DEFAULT_ABI}" ] ; then
79 + sed -i -e 's/frontend//' Makefile || die
80 + fi
81 +}
82 +
83 +multilib_src_install_all() {
84 + find "${D}" -name '*.la' -delete || die
85 + einstalldocs
86 +}