media-sound/lame: drop vulnerable wrt bug #634598
authorAaron Bauman <bman@gentoo.org>
Fri, 23 Mar 2018 23:54:38 +0000 (19:54 -0400)
committerAaron Bauman <bman@gentoo.org>
Fri, 23 Mar 2018 23:55:20 +0000 (19:55 -0400)
media-sound/lame/Manifest
media-sound/lame/lame-3.99.5-r1.ebuild [deleted file]

index 660b616eb696943300681bc204cd9926cc4a9cec..38a803ac7bd069a3c0bc3a48e12498da84274d5b 100644 (file)
@@ -1,3 +1 @@
 DIST lame-3.100.tar.gz 1524133 BLAKE2B 6954d30cfd3951ea07762ba5dd7ff27038b78455f423099a225ebf748abddf9970e444456ca5a6179bd381e2205b32293392cb757c203901674860710fe2c183 SHA512 0844b9eadb4aacf8000444621451277de365041cc1d97b7f7a589da0b7a23899310afd4e4d81114b9912aa97832621d20588034715573d417b2923948c08634b
-DIST lame-3.99.5-automake-2.12.patch.gz 536 BLAKE2B d8e3aa813abdd255c4e95d55936f0f53bec08af8dcfa0eec7ed9978d569fe566085f92e2bb4962b13ef56c7f8a57e2100ca767b3ae9bc13ca5dfe3bad012fc77 SHA512 9d6211e257d573ced5c29c43ba5d5cc98a231b213d6e0cfc352b14776c06c9e656ed1873d5caae466afb27dfe753eeac0842c7221a8538ccecea8f4ba0f8bfe2
-DIST lame-3.99.5.tar.gz 1445348 BLAKE2B 3bb2e3b680fb03a2af517b9d03a20e9366326a410fe9c3688323eb7cad7186273d25071258fe4df38bb47f9ee033a5b9e3fa8a508e65058f37485f204c580c72 SHA512 ce62d7eb9fc8c53c343374ded30f11153a296910f0be7e649197bca7412c6660aad1aa6143d56b750f866229eb492cf7bb4f682535c383fb4aa57d7077d8b4d8
diff --git a/media-sound/lame/lame-3.99.5-r1.ebuild b/media-sound/lame/lame-3.99.5-r1.ebuild
deleted file mode 100644 (file)
index 63a1db9..0000000
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools eutils multilib-minimal
-
-DESCRIPTION="LAME Ain't an MP3 Encoder"
-HOMEPAGE="http://lame.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
-       mirror://gentoo/${P}-automake-2.12.patch.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="debug cpu_flags_x86_mmx +frontend mp3rtp sndfile static-libs"
-
-# These deps are without MULTILIB_USEDEP and are correct since we only build
-# libmp3lame for multilib and these deps apply to the lame frontend executable.
-RDEPEND="
-       frontend? (
-               >=sys-libs/ncurses-5.7-r7:0=
-               sndfile? ( >=media-libs/libsndfile-1.0.2 )
-       )
-       abi_x86_32? ( !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] )"
-DEPEND="${RDEPEND}
-       virtual/pkgconfig
-       cpu_flags_x86_mmx? ( dev-lang/nasm )"
-
-src_prepare() {
-       epatch -p1 \
-               "${FILESDIR}"/${PN}-3.96-ccc.patch \
-               "${FILESDIR}"/${PN}-3.98-gtk-path.patch \
-               "${FILESDIR}"/${PN}-3.99.5-tinfo.patch \
-               "${FILESDIR}"/${PN}-3.99.5-msse.patch \
-               "${WORKDIR}"/${P}-automake-2.12.patch
-
-       mkdir libmp3lame/i386/.libs || die #workaround parallel build with nasm
-
-       sed -i -e '/define sp/s/+/ + /g' libmp3lame/i386/nasm.h || die
-
-       use cpu_flags_x86_mmx || sed -i -e '/AC_PATH_PROG/s:nasm:dIsAbLe&:' configure.in #361879
-
-       AT_M4DIR=. eautoreconf
-}
-
-multilib_src_configure() {
-       local myconf
-       use cpu_flags_x86_mmx && myconf+="--enable-nasm" #361879
-
-       # Only build the frontend for the default ABI.
-       if [ "${ABI}" = "${DEFAULT_ABI}" ] ; then
-               myconf+=" $(use_enable mp3rtp) $(use_enable frontend)"
-               use sndfile && myconf+=" --with-fileio=sndfile"
-       else
-               myconf+=" --disable-frontend --disable-mp3rtp"
-       fi
-
-       ECONF_SOURCE="${S}" econf \
-               $(use_enable static-libs static) \
-               $(use_enable debug debug norm) \
-               --disable-mp3x \
-               --enable-dynamic-frontends \
-               ${myconf}
-}
-
-multilib_src_install() {
-       emake DESTDIR="${D}" pkghtmldir="${EPREFIX}/usr/share/doc/${PF}/html" install
-}
-
-multilib_src_install_all() {
-       cd "${S}"
-       dobin misc/mlame
-
-       dodoc API ChangeLog HACKING README STYLEGUIDE TODO USAGE
-       docinto html
-       dodoc misc/lameGUI.html Dll/LameDLLInterface.htm
-
-       find "${ED}" -name '*.la' -exec rm -f {} +
-}