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-libs/libaacplus/
Date: Wed, 02 Dec 2020 00:32:04
Message-Id: 1606869105.b70a18b9273a0207f885a049975387cd1b4472f7.bman@gentoo
1 commit: b70a18b9273a0207f885a049975387cd1b4472f7
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 1 23:31:10 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 2 00:31:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b70a18b9
7
8 media-libs/libaacplus: drop old
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 media-libs/libaacplus/libaacplus-2.0.2-r2.ebuild | 59 ------------------------
13 1 file changed, 59 deletions(-)
14
15 diff --git a/media-libs/libaacplus/libaacplus-2.0.2-r2.ebuild b/media-libs/libaacplus/libaacplus-2.0.2-r2.ebuild
16 deleted file mode 100644
17 index fc5f229fa59..00000000000
18 --- a/media-libs/libaacplus/libaacplus-2.0.2-r2.ebuild
19 +++ /dev/null
20 @@ -1,59 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -inherit autotools eutils ltprune multilib-minimal
27 -
28 -# This file cannot be mirrored.
29 -# See the notes at http://tipok.org.ua/node/17
30 -# The .tar.gz, ie the wrapper library, is lgpl though.
31 -TGPPDIST=26410-800.zip
32 -
33 -DESCRIPTION="HE-AAC+ v2 library, based on the reference implementation"
34 -HOMEPAGE="http://tipok.org.ua/node/17"
35 -SRC_URI="
36 - https://dev.gentoo.org/~aballier/${P}.tar.gz
37 - http://217.20.164.161/~tipok/aacplus/${P}.tar.gz
38 - http://www.3gpp.org/ftp/Specs/archive/26_series/26.410/${TGPPDIST}"
39 -
40 -LICENSE="LGPL-2.1"
41 -SLOT="0"
42 -KEYWORDS="amd64 arm hppa ppc ppc64 x86"
43 -IUSE="fftw static-libs"
44 -RESTRICT="bindist mirror"
45 -
46 -RDEPEND="
47 - !media-sound/aacplusenc
48 - fftw? ( >=sci-libs/fftw-3.3.3-r2:3.0[${MULTILIB_USEDEP}] )"
49 -DEPEND="${RDEPEND}
50 - app-arch/unzip
51 - virtual/pkgconfig"
52 -
53 -src_unpack() {
54 - unpack ${P}.tar.gz
55 -}
56 -
57 -src_prepare() {
58 - sed \
59 - -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' \
60 - -i configure.ac || die
61 - eautoreconf
62 - cp "${DISTDIR}/${TGPPDIST}" src/ || die
63 - multilib_copy_sources
64 -}
65 -
66 -multilib_src_configure() {
67 - econf \
68 - $(use_with fftw fftw3) \
69 - $(use_enable static-libs static)
70 -}
71 -
72 -multilib_src_compile() {
73 - emake -j1
74 -}
75 -
76 -multilib_src_install_all() {
77 - prune_libtool_files --all
78 - einstalldocs
79 -}