From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BF54A13835A for ; Wed, 2 Dec 2020 00:32:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB5F2E0885; Wed, 2 Dec 2020 00:32:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D33CAE0885 for ; Wed, 2 Dec 2020 00:32:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 72EC03410AC for ; Wed, 2 Dec 2020 00:32:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D94F8476 for ; Wed, 2 Dec 2020 00:32:00 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1606869105.b70a18b9273a0207f885a049975387cd1b4472f7.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libaacplus/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libaacplus/libaacplus-2.0.2-r2.ebuild X-VCS-Directories: media-libs/libaacplus/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: b70a18b9273a0207f885a049975387cd1b4472f7 X-VCS-Branch: master Date: Wed, 2 Dec 2020 00:32:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c13d82e4-761d-44ab-b056-e3cf6e16aa73 X-Archives-Hash: 3217ad52e7f4b4850f4801b604fea9c0 commit: b70a18b9273a0207f885a049975387cd1b4472f7 Author: Aaron Bauman gentoo org> AuthorDate: Tue Dec 1 23:31:10 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Wed Dec 2 00:31:45 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b70a18b9 media-libs/libaacplus: drop old Signed-off-by: Aaron Bauman gentoo.org> media-libs/libaacplus/libaacplus-2.0.2-r2.ebuild | 59 ------------------------ 1 file changed, 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 fc5f229fa59..00000000000 --- 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 -}