Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/faad2/
Date: Thu, 07 Jan 2021 01:24:09
Message-Id: 1609982243.c2128d2f72070c20487fe35ea450fd2be0462ad3.sam@gentoo
1 commit: c2128d2f72070c20487fe35ea450fd2be0462ad3
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 7 01:17:23 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 7 01:17:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2128d2f
7
8 media-libs/faad2: cleanup old
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 media-libs/faad2/Manifest | 1 -
14 media-libs/faad2/faad2-2.9.0.ebuild | 55 -------------------------------------
15 2 files changed, 56 deletions(-)
16
17 diff --git a/media-libs/faad2/Manifest b/media-libs/faad2/Manifest
18 index 7ef416e4861..06ff36d66d3 100644
19 --- a/media-libs/faad2/Manifest
20 +++ b/media-libs/faad2/Manifest
21 @@ -1,3 +1,2 @@
22 DIST faad2-2.10.0.tar.gz 803225 BLAKE2B 73ecbcbb3fce93e8ceb88f6f7669bb681d2329935018cc2a23929cf6672959a0678b47c830cfdcf8e716709ce5252a02178737a7af09de373f7c8b54f38f3d9d SHA512 92c8b5e79f85b7a7caac9e7954959c26d74ef148a658dcb37e2c1b303fc2fcc5a0d12f21e7bd476870498109bdd03916a56c13f578186a69d6eceb103222e771
23 -DIST faad2-2.9.0.tar.gz 802390 BLAKE2B 8cd68f96a48fefcc4d75901ae67607ec4cc4c4a76efae490dcfb3330b384ff91049894af9fccae0b41ca9fd4ef22cdff35c36f11cea1baab4cc96fe1e54749ae SHA512 1756b2672f9e438a56b11160ddc77fc721d85860eaa325a3ff01b51a2524baf4c1c61068a97cbc4e99d47e7643f10e1d6afb997eede3295b44551fe4661fb5dc
24 DIST faad2-2.9.2.tar.gz 803100 BLAKE2B 093c629b81d976db760f02dc7945ae8caee66e2dc6d859499696e4978d4832c9592c2868bed575a39c778fd62f0b74fe5ee3a17b6ab22ec5c148b0dbcd7946c8 SHA512 996c279a56c6abde13da964b91d4ff87ac4c611e889f1dd59882fa3898093dec68ab0714cf106db10a5e24952e2d6dddc049ec9bf4f07ff68378a705d5debee2
25
26 diff --git a/media-libs/faad2/faad2-2.9.0.ebuild b/media-libs/faad2/faad2-2.9.0.ebuild
27 deleted file mode 100644
28 index b12960f3c6a..00000000000
29 --- a/media-libs/faad2/faad2-2.9.0.ebuild
30 +++ /dev/null
31 @@ -1,55 +0,0 @@
32 -# Copyright 1999-2021 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 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-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 -}