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 5E954139336 for ; Tue, 29 Jun 2021 14:50:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55705E0843; Tue, 29 Jun 2021 14:50:36 +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 320A0E0843 for ; Tue, 29 Jun 2021 14:50:36 +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 092E433BE1A for ; Tue, 29 Jun 2021 14:50:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5BE4478F for ; Tue, 29 Jun 2021 14:50:33 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1624978102.745bebfc9d46884fc70fb1ae05fbcbf7d39fea0c.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/liblrdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/liblrdf/liblrdf-0.6.1-r1.ebuild X-VCS-Directories: media-libs/liblrdf/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 745bebfc9d46884fc70fb1ae05fbcbf7d39fea0c X-VCS-Branch: master Date: Tue, 29 Jun 2021 14:50:33 +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: 92a173da-e40b-4d6e-b433-409ceb0a7034 X-Archives-Hash: defe2c80f53f7387c2683250541cdba1 commit: 745bebfc9d46884fc70fb1ae05fbcbf7d39fea0c Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Tue Jun 29 07:27:08 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Tue Jun 29 14:48:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=745bebfc media-libs/liblrdf: make multilib Required for >=media-plugins/gst-plugins-ladspa-1.18.4 Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> Closes: https://github.com/gentoo/gentoo/pull/21468/commits/c2c36bef8009d850c2489ba9c7bac4e28aca8862 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/liblrdf/liblrdf-0.6.1-r1.ebuild | 46 ++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/media-libs/liblrdf/liblrdf-0.6.1-r1.ebuild b/media-libs/liblrdf/liblrdf-0.6.1-r1.ebuild new file mode 100644 index 00000000000..2c09c797bfe --- /dev/null +++ b/media-libs/liblrdf/liblrdf-0.6.1-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools multilib-minimal + +DESCRIPTION="Library for manipulation of RDF files in LADSPA plugins" +HOMEPAGE="https://github.com/swh/LRDF" +SRC_URI="https://github.com/swh/LRDF/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="static-libs" + +RDEPEND=" + media-libs/ladspa-sdk[${MULTILIB_USEDEP}] + media-libs/raptor:2[${MULTILIB_USEDEP}] +" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS=( AUTHORS ChangeLog README ) + +S="${WORKDIR}/LRDF-${PV}" + +src_prepare() { + default + sed -i -e 's:usr/local:usr:' examples/{instances,remove}_test.c || die #392221 + eautoreconf + multilib_copy_sources +} + +multilib_src_configure() { + econf $(use_enable static-libs static) +} + +multilib_src_test() { + has_version media-plugins/swh-plugins && default #392221 +} + +multilib_src_install() { + default + find "${D}" -name '*.la' -delete || die +}