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 65D79138334 for ; Mon, 23 Dec 2019 15:25:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9267FE0B15; Mon, 23 Dec 2019 15:25:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 75E9BE0B15 for ; Mon, 23 Dec 2019 15:25:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 0A0D334DAF4 for ; Mon, 23 Dec 2019 15:25:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8580C73A03 for ; Mon, 23 Dec 2019 15:25:13 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1577114704.0597ad045c450eb468c4500d9ddb05584de70c3d.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/faac/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/faac/faac-1.29.9.2.ebuild X-VCS-Directories: media-libs/faac/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 0597ad045c450eb468c4500d9ddb05584de70c3d X-VCS-Branch: master Date: Mon, 23 Dec 2019 15:25:13 +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: 1ce79470-ffae-47d2-94f9-41e428758664 X-Archives-Hash: b5fa453b395f9962e06417fea9c193f4 commit: 0597ad045c450eb468c4500d9ddb05584de70c3d Author: David Seifert gentoo org> AuthorDate: Mon Dec 23 15:25:04 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Dec 23 15:25:04 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0597ad04 media-libs/faac: Port to EAPI 7 Package-Manager: Portage-2.3.82, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> media-libs/faac/faac-1.29.9.2.ebuild | 27 +++++++++------------------ 1 file changed, 9 insertions(+), 18 deletions(-) diff --git a/media-libs/faac/faac-1.29.9.2.ebuild b/media-libs/faac/faac-1.29.9.2.ebuild index 58776bbdaad..8b790a669fc 100644 --- a/media-libs/faac/faac-1.29.9.2.ebuild +++ b/media-libs/faac/faac-1.29.9.2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit autotools epunt-cxx multilib-minimal +inherit autotools multilib-minimal DESCRIPTION="Free MPEG-4 audio codecs by AudioCoding.com" HOMEPAGE="https://www.audiocoding.com" @@ -12,34 +12,25 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1 MPEG-4" SLOT="0" KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="static-libs" - -DEPEND="${RDEPEND}" -DOCS=( AUTHORS ChangeLog NEWS README TODO ) src_prepare() { default - sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.ac || die #466984 - eautoreconf - epunt_cxx } multilib_src_configure() { - local myconf=( - $(use_enable static-libs static) - ) + ECONF_SOURCE="${S}" econf --disable-static - ECONF_SOURCE="${S}" econf ${myconf[@]} - - # do not build the frontend for non default abis - if [ "${ABI}" != "${DEFAULT_ABI}" ] ; then + # do not build the frontend for non-native abis + if ! multilib_is_native_abi; then sed -i -e 's/frontend//' Makefile || die fi } -multilib_src_install() { - emake DESTDIR="${D}" install +multilib_src_install_all() { + einstalldocs + + # no static archives find "${D}" -name '*.la' -delete || die }