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/libmp4v2/
Date: Mon, 07 Sep 2020 22:22:39
Message-Id: 1599517350.2a89a8c0b44df34d90bf96ef6541b51bfd115914.sam@gentoo
1 commit: 2a89a8c0b44df34d90bf96ef6541b51bfd115914
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 7 22:22:18 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 7 22:22:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a89a8c0
7
8 media-libs/libmp4v2: security cleanup
9
10 Bug: https://bugs.gentoo.org/661582
11 Package-Manager: Portage-3.0.4, Repoman-3.0.1
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 media-libs/libmp4v2/libmp4v2-2.0.0-r1.ebuild | 50 ----------------------------
15 1 file changed, 50 deletions(-)
16
17 diff --git a/media-libs/libmp4v2/libmp4v2-2.0.0-r1.ebuild b/media-libs/libmp4v2/libmp4v2-2.0.0-r1.ebuild
18 deleted file mode 100644
19 index 58d839ef5f3..00000000000
20 --- a/media-libs/libmp4v2/libmp4v2-2.0.0-r1.ebuild
21 +++ /dev/null
22 @@ -1,50 +0,0 @@
23 -# Copyright 1999-2020 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=7
27 -
28 -MY_P=${P/lib}
29 -inherit libtool
30 -
31 -DESCRIPTION="Functions for accessing ISO-IEC:14496-1:2001 MPEG-4 standard"
32 -HOMEPAGE="https://code.google.com/p/mp4v2/"
33 -SRC_URI="https://mp4v2.googlecode.com/files/${MY_P}.tar.bz2"
34 -
35 -LICENSE="MPL-1.1"
36 -SLOT="0"
37 -KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
38 -IUSE="static-libs test utils"
39 -RESTRICT="!test? ( test )"
40 -
41 -BDEPEND="
42 - sys-apps/sed
43 - test? ( dev-util/dejagnu )
44 - utils? ( sys-apps/help2man )
45 -"
46 -
47 -DOCS=( doc/{Authors,BuildSource,Documentation,ReleaseNotes,ToolGuide}.txt README )
48 -
49 -S=${WORKDIR}/${MY_P}
50 -
51 -PATCHES=(
52 - "${FILESDIR}/${P}-gcc7.patch"
53 - "${FILESDIR}/${P}-mp4tags-corruption.patch"
54 - "${FILESDIR}/${P}-clang.patch"
55 -)
56 -
57 -src_prepare() {
58 - default
59 - elibtoolize
60 -}
61 -
62 -src_configure() {
63 - econf \
64 - --disable-gch \
65 - $(use_enable utils util) \
66 - $(use_enable static-libs static)
67 -}
68 -
69 -src_install() {
70 - default
71 - find "${D}" -name '*.la' -delete || die
72 -}