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 15F90158087 for ; Tue, 28 Dec 2021 22:27:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3B812BC082; Tue, 28 Dec 2021 22:27:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 42E422BC082 for ; Tue, 28 Dec 2021 22:27:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 AEF34342EF4 for ; Tue, 28 Dec 2021 22:26:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 172D5266 for ; Tue, 28 Dec 2021 22:26:57 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1640730398.02b40bc1cd7ad5a68d2458458da7067431b04923.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libpulse/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libpulse/libpulse-15.0.ebuild X-VCS-Directories: media-libs/libpulse/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 02b40bc1cd7ad5a68d2458458da7067431b04923 X-VCS-Branch: master Date: Tue, 28 Dec 2021 22:26:57 +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: 9ed16812-ca36-4713-9ff5-be1b5edbfdf5 X-Archives-Hash: a640b1ee394036fd07076547eb76888d commit: 02b40bc1cd7ad5a68d2458458da7067431b04923 Author: Sam James gentoo org> AuthorDate: Tue Dec 28 22:26:38 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Dec 28 22:26:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02b40bc1 media-libs/libpulse: needs libx11[${MULTILIB_USEDEP}] ``` Run-time dependency x11-xcb found: NO (tried pkgconfig and cmake) ../pulseaudio-15.0/meson.build:681:0: ERROR: Dependency "x11-xcb" not found, tried pkgconfig and cmake ``` Reported in #gentoo. x11-xcb is provided by libx11. Note that it still needs libxcb in addition. Signed-off-by: Sam James gentoo.org> media-libs/libpulse/libpulse-15.0.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/media-libs/libpulse/libpulse-15.0.ebuild b/media-libs/libpulse/libpulse-15.0.ebuild index 92f3abe61083..28fedf2da21e 100644 --- a/media-libs/libpulse/libpulse-15.0.ebuild +++ b/media-libs/libpulse/libpulse-15.0.ebuild @@ -41,7 +41,10 @@ RDEPEND=" selinux? ( sec-policy/selinux-pulseaudio ) systemd? ( sys-apps/systemd:= ) tcpd? ( sys-apps/tcp-wrappers ) - X? ( >=x11-libs/libxcb-1.6[${MULTILIB_USEDEP}] ) + X? ( + x11-libs/libX11[${MULTILIB_USEDEP}] + >=x11-libs/libxcb-1.6[${MULTILIB_USEDEP}] + ) || ( elibc_glibc? ( virtual/libc ) elibc_uclibc? ( virtual/libc )