From 90660acc63a622dc6aba16646f2a69e4c8ee61c2 Mon Sep 17 00:00:00 2001 From: William Breathitt Gray Date: Sun, 10 Jan 2021 06:27:27 +0900 Subject: dev-cpp/benchmark: Add support for debug USE flag Closes: https://bugs.gentoo.org/764653 Signed-off-by: William Breathitt Gray Closes: https://github.com/gentoo/gentoo/pull/19011 Signed-off-by: Sergei Trofimovich --- dev-cpp/benchmark/benchmark-1.5.2.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-cpp/benchmark/benchmark-1.5.2.ebuild b/dev-cpp/benchmark/benchmark-1.5.2.ebuild index e3a3e8cfb6eb..840648c7edc2 100644 --- a/dev-cpp/benchmark/benchmark-1.5.2.ebuild +++ b/dev-cpp/benchmark/benchmark-1.5.2.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" -IUSE="test" +IUSE="debug test" RESTRICT="!test? ( test )" PATCHES=( @@ -26,5 +26,7 @@ src_configure() { -DBENCHMARK_ENABLE_ASSEMBLY_TESTS=OFF ) + use debug || append-cppflags -DNDEBUG + cmake_src_configure } -- cgit v1.2.3-65-gdbad