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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E0E56158087 for ; Wed, 12 Jan 2022 15:07:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44EFD2BC036; Wed, 12 Jan 2022 15:07:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 562052BC036 for ; Wed, 12 Jan 2022 15:07:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 247AB34325B for ; Wed, 12 Jan 2022 15:07:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2534B291 for ; Wed, 12 Jan 2022 15:07:32 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1642000037.5eb6d59158fc7624e2f3575c111b893d4f8d1c48.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libxtract/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libxtract/libxtract-0.6.6.ebuild X-VCS-Directories: media-libs/libxtract/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: 5eb6d59158fc7624e2f3575c111b893d4f8d1c48 X-VCS-Branch: master Date: Wed, 12 Jan 2022 15:07:32 +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: b1cf02c7-b980-45f8-a061-3f6214acfcc9 X-Archives-Hash: b0919f22ff5485889b791463a21e7ad4 commit: 5eb6d59158fc7624e2f3575c111b893d4f8d1c48 Author: Jakov Smolić gentoo org> AuthorDate: Wed Jan 12 12:37:56 2022 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Wed Jan 12 15:07:17 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eb6d591 media-libs/libxtract: Port to EAPI 8 Closes: https://bugs.gentoo.org/828718 Signed-off-by: Jakov Smolić gentoo.org> media-libs/libxtract/libxtract-0.6.6.ebuild | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/media-libs/libxtract/libxtract-0.6.6.ebuild b/media-libs/libxtract/libxtract-0.6.6.ebuild index b3d815fbc397..2776aeba9849 100644 --- a/media-libs/libxtract/libxtract-0.6.6.ebuild +++ b/media-libs/libxtract/libxtract-0.6.6.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=8 DESCRIPTION="A simple, portable, lightweight library of audio feature extraction functions" HOMEPAGE="https://github.com/jamiebullock/LibXtract" @@ -10,23 +10,24 @@ SRC_URI="https://github.com/downloads/jamiebullock/LibXtract/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~ppc ppc64 x86" -IUSE="doc fftw static-libs" +IUSE="doc fftw" RDEPEND="fftw? ( sci-libs/fftw:3.0 )" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen )" +DEPEND="${RDEPEND}" +BDEPEND="doc? ( app-doc/doxygen )" src_configure() { econf \ $(use_enable fftw fft) \ - $(use_enable static-libs static) # Prevent doc from being generated automagically - use doc || touch doc/doxygen-build.stamp + if ! use doc; then + touch doc/doxygen-build.stamp || die + fi } src_install() { emake DESTDIR="${D}" install - find "${ED}" -name "*.la" -delete + find "${ED}" -name "*.la" -delete || die dodoc README.md TODO AUTHORS - use doc && dohtml doc/html/* + use doc && dodoc -r doc/html/. }