Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/vorbis-tools/
Date: Sun, 15 Jul 2018 23:45:53
Message-Id: 1531698327.7e4925d1c1aa39bacd24a5f575d21e2a08dcc02d.asturm@gentoo
1 commit: 7e4925d1c1aa39bacd24a5f575d21e2a08dcc02d
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 15 23:32:38 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 15 23:45:27 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e4925d1
7
8 media-sound/vorbis-tools: Cleanup vulnerable
9
10 Bug: https://bugs.gentoo.org/537422
11 Package-Manager: Portage-2.3.42, Repoman-2.3.9
12
13 .../vorbis-tools/vorbis-tools-1.4.0-r3.ebuild | 45 ----------------------
14 1 file changed, 45 deletions(-)
15
16 diff --git a/media-sound/vorbis-tools/vorbis-tools-1.4.0-r3.ebuild b/media-sound/vorbis-tools/vorbis-tools-1.4.0-r3.ebuild
17 deleted file mode 100644
18 index 040a329e40b..00000000000
19 --- a/media-sound/vorbis-tools/vorbis-tools-1.4.0-r3.ebuild
20 +++ /dev/null
21 @@ -1,45 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -inherit autotools eutils
27 -
28 -DESCRIPTION="tools for using the Ogg Vorbis sound file format"
29 -HOMEPAGE="http://www.vorbis.com"
30 -SRC_URI="http://downloads.xiph.org/releases/vorbis/${P}.tar.gz"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
35 -IUSE="flac kate nls +ogg123 speex"
36 -
37 -RDEPEND=">=media-libs/libvorbis-1.3.0
38 - flac? ( media-libs/flac )
39 - kate? ( media-libs/libkate )
40 - ogg123? (
41 - >=media-libs/libao-1.0.0
42 - net-misc/curl
43 - )
44 - speex? ( media-libs/speex )"
45 -DEPEND="${RDEPEND}
46 - nls? ( sys-devel/gettext )
47 - virtual/pkgconfig"
48 -
49 -DOCS="AUTHORS CHANGES README"
50 -
51 -src_prepare() {
52 - epatch "${FILESDIR}"/${P}-underlinking.patch
53 - epatch "${FILESDIR}"/${P}-format-security.patch
54 - epatch "${FILESDIR}"/${P}-aiff-buffer-overflow.patch
55 - sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.ac || die #515220
56 - eautoreconf
57 -}
58 -
59 -src_configure() {
60 - econf \
61 - $(use_enable nls) \
62 - $(use_enable ogg123) \
63 - $(use_with flac) \
64 - $(use_with speex) \
65 - $(use_with kate)
66 -}