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 CB23B1382C5 for ; Thu, 25 Jun 2020 14:03:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87B0EE0887; Thu, 25 Jun 2020 14:03:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 6A6A2E0887 for ; Thu, 25 Jun 2020 14:03:21 +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 4F86034F17F for ; Thu, 25 Jun 2020 14:03:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B7EA2B0 for ; Thu, 25 Jun 2020 14:03:17 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1593093786.0b7d9ab3dcbc25db13ce4d222f2a32e464a04f64.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mumble/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/mumble/mumble-9999.ebuild X-VCS-Directories: media-sound/mumble/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 0b7d9ab3dcbc25db13ce4d222f2a32e464a04f64 X-VCS-Branch: master Date: Thu, 25 Jun 2020 14:03:17 +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: 8ae71d43-1e5d-452e-b251-be9c7c79546e X-Archives-Hash: 45ab8a4327a191d34c56ba7a64aec098 commit: 0b7d9ab3dcbc25db13ce4d222f2a32e464a04f64 Author: Lars Wendler gentoo org> AuthorDate: Thu Jun 25 14:01:17 2020 +0000 Commit: Lars Wendler gentoo org> CommitDate: Thu Jun 25 14:03:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b7d9ab3 media-sound/mumble: Synced live ebuild Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Lars Wendler gentoo.org> media-sound/mumble/mumble-9999.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/media-sound/mumble/mumble-9999.ebuild b/media-sound/mumble/mumble-9999.ebuild index 7f2856cbf12..0d89e8057bf 100644 --- a/media-sound/mumble/mumble-9999.ebuild +++ b/media-sound/mumble/mumble-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -118,10 +118,11 @@ src_compile() { multilib_src_install() { local dir=$(usex debug debug release) - dolib.so "${dir}/${MULTILIB_ABI_FLAG}"/libmumble.so* + insinto /usr/$(get_libdir)/${PN} + doins "${dir}/${MULTILIB_ABI_FLAG}"/libmumble.so* if multilib_is_native_abi; then dobin "${dir}"/mumble - dolib.so "${dir}"/libcelt0.so* "${dir}"/plugins/lib*.so* + doins "${dir}"/libcelt0.so* "${dir}"/plugins/lib*.so* fi }