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 A29FE1382C5 for ; Sun, 17 Jan 2021 02:16:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B573E0829; Sun, 17 Jan 2021 02:16:41 +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 53CB6E0829 for ; Sun, 17 Jan 2021 02:16:41 +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 2C2EF33BE65 for ; Sun, 17 Jan 2021 02:16:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F4E949C for ; Sun, 17 Jan 2021 02:16:38 +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: <1610849774.970bdc895c2c3b5ca2a1fb3c3c56c83ec97ed14f.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libpciaccess/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/libpciaccess/libpciaccess-0.16.ebuild X-VCS-Directories: x11-libs/libpciaccess/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 970bdc895c2c3b5ca2a1fb3c3c56c83ec97ed14f X-VCS-Branch: master Date: Sun, 17 Jan 2021 02:16:38 +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: 3ed24f9c-122e-4eec-aa35-527ba21057fb X-Archives-Hash: 88df25a73023d78063ffc083c346205d commit: 970bdc895c2c3b5ca2a1fb3c3c56c83ec97ed14f Author: Lars Wendler gentoo org> AuthorDate: Sun Jan 17 02:15:17 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Sun Jan 17 02:16:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=970bdc89 x11-libs/libpciaccess: Use autotools to install scanpci Closes: https://bugs.gentoo.org/765706 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Lars Wendler gentoo.org> x11-libs/libpciaccess/libpciaccess-0.16.ebuild | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/x11-libs/libpciaccess/libpciaccess-0.16.ebuild b/x11-libs/libpciaccess/libpciaccess-0.16.ebuild index 26d6ad0aa67..958bd5f5f28 100644 --- a/x11-libs/libpciaccess/libpciaccess-0.16.ebuild +++ b/x11-libs/libpciaccess/libpciaccess-0.16.ebuild @@ -1,9 +1,10 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 XORG_MULTILIB=yes +XORG_EAUTORECONF=yes inherit xorg-3 DESCRIPTION="Library providing generic access to the PCI bus and devices" @@ -22,11 +23,8 @@ pkg_setup() { ) } -multilib_src_install() { - default - - if multilib_is_native_abi; then - dodir /usr/bin - /bin/sh libtool --mode=install "$(type -P install)" -c scanpci/scanpci "${ED}"/usr/bin || die - fi +src_prepare() { + # Let autotools install scanpci (#765706) + sed 's@^noinst_@bin_@' -i scanpci/Makefile.am || die + xorg-3_src_prepare }