Gentoo Archives: gentoo-commits

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