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 3B31A13835A for ; Thu, 28 May 2020 00:13:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C6F11E089D; Thu, 28 May 2020 00:13:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 AE7E3E089A for ; Thu, 28 May 2020 00:13:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 5E3EA34EAD7 for ; Thu, 28 May 2020 00:13:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 773B223E for ; Thu, 28 May 2020 00:13:19 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1590623069.fb4e0b882ce961fa9fa09f1cc017007a71f6af57.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-sound/sndio/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-sound/sndio/sndio-1.6.0.ebuild X-VCS-Directories: media-sound/sndio/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: fb4e0b882ce961fa9fa09f1cc017007a71f6af57 X-VCS-Branch: dev Date: Thu, 28 May 2020 00:13:19 +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: d8be46ba-7ada-44f6-9704-c4b3e1fc4ef7 X-Archives-Hash: 22b9f6ca389a76b95c47980aec99a8b1 commit: fb4e0b882ce961fa9fa09f1cc017007a71f6af57 Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Wed May 27 23:44:29 2020 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Wed May 27 23:44:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fb4e0b88 media-sound/sndio: Make it multilib This is needed to add sndio support to multilib packages like portaudio Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> media-sound/sndio/sndio-1.6.0.ebuild | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/media-sound/sndio/sndio-1.6.0.ebuild b/media-sound/sndio/sndio-1.6.0.ebuild index 166a64c..67deea4 100644 --- a/media-sound/sndio/sndio-1.6.0.ebuild +++ b/media-sound/sndio/sndio-1.6.0.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit multilib-minimal + DESCRIPTION="small audio and MIDI framework part of the OpenBSD project" HOMEPAGE="http://www.sndio.org/" SRC_URI="http://www.sndio.org/${P}.tar.gz" @@ -12,15 +14,20 @@ KEYWORDS="~amd64" IUSE="alsa" DEPEND=" - dev-libs/libbsd - media-libs/alsa-lib + dev-libs/libbsd[${MULTILIB_USEDEP}] + media-libs/alsa-lib[${MULTILIB_USEDEP}] " RDEPEND=" ${DEPEND} acct-user/sndiod " -src_configure() { +src_prepare() { + default + multilib_copy_sources +} + +multilib_src_configure() { ./configure \ --prefix=/usr \ --libdir=/usr/$(get_libdir) \