diff options
author | Aaron Bauman <bman@gentoo.org> | 2020-12-01 18:31:10 -0500 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-12-01 19:31:45 -0500 |
commit | b70a18b9273a0207f885a049975387cd1b4472f7 (patch) | |
tree | 5a28cd1367d670767fc992198569f4a89333bbe8 /media-libs/libaacplus | |
parent | media-libs/gmtk: drop old (diff) | |
download | gentoo-b70a18b9273a0207f885a049975387cd1b4472f7.tar.gz gentoo-b70a18b9273a0207f885a049975387cd1b4472f7.tar.bz2 gentoo-b70a18b9273a0207f885a049975387cd1b4472f7.zip |
media-libs/libaacplus: drop old
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'media-libs/libaacplus')
-rw-r--r-- | media-libs/libaacplus/libaacplus-2.0.2-r2.ebuild | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/media-libs/libaacplus/libaacplus-2.0.2-r2.ebuild b/media-libs/libaacplus/libaacplus-2.0.2-r2.ebuild deleted file mode 100644 index fc5f229fa590..000000000000 --- a/media-libs/libaacplus/libaacplus-2.0.2-r2.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit autotools eutils ltprune multilib-minimal - -# This file cannot be mirrored. -# See the notes at http://tipok.org.ua/node/17 -# The .tar.gz, ie the wrapper library, is lgpl though. -TGPPDIST=26410-800.zip - -DESCRIPTION="HE-AAC+ v2 library, based on the reference implementation" -HOMEPAGE="http://tipok.org.ua/node/17" -SRC_URI=" - https://dev.gentoo.org/~aballier/${P}.tar.gz - http://217.20.164.161/~tipok/aacplus/${P}.tar.gz - http://www.3gpp.org/ftp/Specs/archive/26_series/26.410/${TGPPDIST}" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 arm hppa ppc ppc64 x86" -IUSE="fftw static-libs" -RESTRICT="bindist mirror" - -RDEPEND=" - !media-sound/aacplusenc - fftw? ( >=sci-libs/fftw-3.3.3-r2:3.0[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND} - app-arch/unzip - virtual/pkgconfig" - -src_unpack() { - unpack ${P}.tar.gz -} - -src_prepare() { - sed \ - -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' \ - -i configure.ac || die - eautoreconf - cp "${DISTDIR}/${TGPPDIST}" src/ || die - multilib_copy_sources -} - -multilib_src_configure() { - econf \ - $(use_with fftw fftw3) \ - $(use_enable static-libs static) -} - -multilib_src_compile() { - emake -j1 -} - -multilib_src_install_all() { - prune_libtool_files --all - einstalldocs -} |