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 1595B15800F for ; Sun, 8 Jan 2023 21:09:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9C93E077C; Sun, 8 Jan 2023 21:09:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 CE88CE077C for ; Sun, 8 Jan 2023 21:09:26 +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 A2AD1340CF1 for ; Sun, 8 Jan 2023 21:09:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DB60676B for ; Sun, 8 Jan 2023 21:09:23 +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: <1673212076.22cd904362c30ddaa479349fdc3b8278eb8c3aac.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-r3.ebuild X-VCS-Directories: media-plugins/ladspa-bs2b/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 22cd904362c30ddaa479349fdc3b8278eb8c3aac X-VCS-Branch: master Date: Sun, 8 Jan 2023 21:09:23 +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: b3a60dc3-02b6-47ad-9fdd-d355432428cf X-Archives-Hash: 31085a6262bb112807fcdb08a5f887ff commit: 22cd904362c30ddaa479349fdc3b8278eb8c3aac Author: Sebastian Pipping gentoo org> AuthorDate: Sun Jan 8 21:07:08 2023 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sun Jan 8 21:07:56 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22cd9043 media-plugins/ladspa-bs2b: Fix compilation for dash /bin/sh Closes: https://bugs.gentoo.org/889426 Signed-off-by: Sebastian Pipping gentoo.org> .../ladspa-bs2b/ladspa-bs2b-0.9.1-r3.ebuild | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r3.ebuild b/media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r3.ebuild new file mode 100644 index 000000000000..fe0ab13e4dab --- /dev/null +++ b/media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2023 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="mirror://sourceforge/bs2b/plugins/LADSPA%20plugin/${PV}/${P}.tar.bz2" + +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +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 +}