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 0210715810D for ; Tue, 16 May 2023 03:39:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FDCBE08E2; Tue, 16 May 2023 03:39:55 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 2BD6DE08E2 for ; Tue, 16 May 2023 03:39:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 smtp.gentoo.org (Postfix) with ESMTPS id 5CA02340D3C for ; Tue, 16 May 2023 03:39:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 99593A72 for ; Tue, 16 May 2023 03:39:51 +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: <1684208158.1eb927e1848456ddc63f57f6f9d8a09cf5ade668.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-intel/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20230201.ebuild x11-drivers/xf86-video-intel/xf86-video-intel-9999.ebuild X-VCS-Directories: x11-drivers/xf86-video-intel/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1eb927e1848456ddc63f57f6f9d8a09cf5ade668 X-VCS-Branch: master Date: Tue, 16 May 2023 03:39:51 +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: c8f08c65-da00-4afc-a190-86f5246ee356 X-Archives-Hash: e5e10b079fc37ff8702406d1999739e5 commit: 1eb927e1848456ddc63f57f6f9d8a09cf5ade668 Author: Sam James gentoo org> AuthorDate: Tue May 16 03:17:31 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue May 16 03:35:58 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eb927e1 x11-drivers/xf86-video-intel: add Valgrind annotation support Signed-off-by: Sam James gentoo.org> .../xf86-video-intel-2.99.917_p20230201.ebuild | 10 +++++++--- x11-drivers/xf86-video-intel/xf86-video-intel-9999.ebuild | 10 +++++++--- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20230201.ebuild b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20230201.ebuild index fef57ffc39e7..0ab021c90388 100644 --- a/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20230201.ebuild +++ b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20230201.ebuild @@ -18,7 +18,7 @@ fi DESCRIPTION="X.Org driver for Intel cards" -IUSE="debug +sna tools +udev uxa xvmc" +IUSE="debug +sna tools +udev uxa valgrind xvmc" REQUIRED_USE=" || ( sna uxa ) @@ -50,8 +50,11 @@ RDEPEND=" x11-libs/xcb-util ) " -DEPEND="${RDEPEND} - x11-base/xorg-proto" +DEPEND=" + ${RDEPEND} + x11-base/xorg-proto + valgrind? ( dev-util/valgrind ) +" pkg_setup() { linux-info_pkg_setup @@ -72,6 +75,7 @@ src_configure() { $(use_enable tools) $(use_enable udev) $(use_enable uxa) + $(use_enable valgrind) $(use_enable xvmc) ) xorg-3_src_configure diff --git a/x11-drivers/xf86-video-intel/xf86-video-intel-9999.ebuild b/x11-drivers/xf86-video-intel/xf86-video-intel-9999.ebuild index dd5f84ebed58..d421af04dbac 100644 --- a/x11-drivers/xf86-video-intel/xf86-video-intel-9999.ebuild +++ b/x11-drivers/xf86-video-intel/xf86-video-intel-9999.ebuild @@ -18,7 +18,7 @@ fi DESCRIPTION="X.Org driver for Intel cards" -IUSE="debug +sna tools +udev uxa xvmc" +IUSE="debug +sna tools +udev uxa valgrind xvmc" REQUIRED_USE=" || ( sna uxa ) @@ -50,8 +50,11 @@ RDEPEND=" x11-libs/xcb-util ) " -DEPEND="${RDEPEND} - x11-base/xorg-proto" +DEPEND=" + ${RDEPEND} + x11-base/xorg-proto + valgrind? ( dev-util/valgrind ) +" pkg_setup() { linux-info_pkg_setup @@ -72,6 +75,7 @@ src_configure() { $(use_enable tools) $(use_enable udev) $(use_enable uxa) + $(use_enable valgrind) $(use_enable xvmc) ) xorg-3_src_configure