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 63EB5138334 for ; Thu, 13 Jun 2019 19:31:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84CCFE0907; Thu, 13 Jun 2019 19:31:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 4F3C2E0907 for ; Thu, 13 Jun 2019 19:31:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 4E3E8345A43 for ; Thu, 13 Jun 2019 19:31:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1B692A5 for ; Thu, 13 Jun 2019 19:31:37 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1560454286.187b4281a273c9d358a1dbd8927956e7a5ddce23.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/igt-gpu-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-apps/igt-gpu-tools/igt-gpu-tools-9999.ebuild X-VCS-Directories: x11-apps/igt-gpu-tools/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 187b4281a273c9d358a1dbd8927956e7a5ddce23 X-VCS-Branch: master Date: Thu, 13 Jun 2019 19:31:37 +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: def0bd71-10c5-4208-929b-055391a3d053 X-Archives-Hash: d951afffbc027ef844c4325ab2acfebf commit: 187b4281a273c9d358a1dbd8927956e7a5ddce23 Author: Matt Turner gentoo org> AuthorDate: Thu Jun 13 19:28:21 2019 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Jun 13 19:31:26 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=187b4281 x11-apps/igt-gpu-tools: Use meson_feature function Closes: https://bugs.gentoo.org/687880 Signed-off-by: Matt Turner gentoo.org> x11-apps/igt-gpu-tools/igt-gpu-tools-9999.ebuild | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/x11-apps/igt-gpu-tools/igt-gpu-tools-9999.ebuild b/x11-apps/igt-gpu-tools/igt-gpu-tools-9999.ebuild index 81fff23b3e7..8662c0102ba 100644 --- a/x11-apps/igt-gpu-tools/igt-gpu-tools-9999.ebuild +++ b/x11-apps/igt-gpu-tools/igt-gpu-tools-9999.ebuild @@ -88,16 +88,16 @@ src_configure() { use overlay && use X && overlay_backends+="x," local emesonargs=( - -Dbuild_chamelium=$(usex chamelium true false) - -Dbuild_docs=$(usex doc true false) - -Dbuild_man=$(usex man true false) - -Dbuild_overlay=$(usex overlay true false) - -Dbuild_runner=$(usex runner true false) - -Dbuild_tests=$(usex doc true false) # Test build is required for docs + $(meson_feature chamelium build_chamelium) + $(meson_feature doc build_docs) + $(meson_feature man build_man) + $(meson_feature overlay build_overlay) + $(meson_feature runner build_runner) + $(meson_feature doc build_tests) # Test build is required for docs + $(meson_feature valgrind with_valgrind) + $(meson_feature unwind with_libunwind) -Doverlay_backends=${overlay_backends%?} -Dwith_libdrm=${gpus%?} - -Dwith_libunwind=$(usex unwind true false) - -Dwith_valgrind=$(usex valgrind true false) ) meson_src_configure }