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 CF149158046 for ; Wed, 9 Oct 2024 14:00:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4791E29F3; Wed, 9 Oct 2024 14:00:52 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C8D04E29F3 for ; Wed, 9 Oct 2024 14:00:52 +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 CF146343093 for ; Wed, 9 Oct 2024 14:00:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33F331C89 for ; Wed, 9 Oct 2024 14:00:50 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1728482425.a53c20252401545373a9fd3e4347f0196473f953.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/ladspa-bs2b/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r4.ebuild X-VCS-Directories: media-plugins/ladspa-bs2b/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: a53c20252401545373a9fd3e4347f0196473f953 X-VCS-Branch: master Date: Wed, 9 Oct 2024 14:00:50 +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: d7671590-4132-40b7-9a3c-41d36aea8723 X-Archives-Hash: 350b39299e67db79a5eae06469b2fc35 commit: a53c20252401545373a9fd3e4347f0196473f953 Author: Sebastian Pipping gentoo org> AuthorDate: Wed Oct 9 14:00:11 2024 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Wed Oct 9 14:00:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a53c2025 media-plugins/ladspa-bs2b: Address warning EmptyGlobalAssignment Signed-off-by: Sebastian Pipping gentoo.org> .../ladspa-bs2b/ladspa-bs2b-0.9.1-r4.ebuild | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r4.ebuild b/media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r4.ebuild new file mode 100644 index 000000000000..48292005efbd --- /dev/null +++ b/media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r4.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +inherit autotools + +DESCRIPTION="LADSPA plugin for bs2b headphone filter" +HOMEPAGE="http://bs2b.sourceforge.net/" +SRC_URI="https://downloads.sourceforge.net/bs2b/plugins/LADSPA%20plugin/${PV}/${P}.tar.bz2" + +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="media-libs/ladspa-sdk + >=media-libs/libbs2b-3.1.0" + +RDEPEND="${DEPEND}" + +src_prepare() { + default + sed 's,dist-lzma,,' -i configure.ac || die + eautoreconf # bug 889426 +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}