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 776CC15815E for ; Sat, 3 Feb 2024 14:03:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BFDCFE2AD2; Sat, 3 Feb 2024 14:03:46 +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 A3837E2AD2 for ; Sat, 3 Feb 2024 14:03:46 +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 9802A343211 for ; Sat, 3 Feb 2024 14:03:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 39AEAAE3 for ; Sat, 3 Feb 2024 14:03:44 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1706966530.822879c7c6dbce0c21ba4c63d6ce4950f597bea9.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-accessibility/rhvoice-core/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-accessibility/rhvoice-core/rhvoice-core-1.14.0.ebuild X-VCS-Directories: app-accessibility/rhvoice-core/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 822879c7c6dbce0c21ba4c63d6ce4950f597bea9 X-VCS-Branch: dev Date: Sat, 3 Feb 2024 14:03:44 +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: 429a393d-a186-4e2b-bc28-a917342c01a4 X-Archives-Hash: 24526e627115364f8a217083b15c7f97 commit: 822879c7c6dbce0c21ba4c63d6ce4950f597bea9 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Sat Feb 3 13:22:10 2024 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Sat Feb 3 13:22:10 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=822879c7 app-accessibility/rhvoice-core: fix speech-dispatcher These defines are missing in CMake. Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> app-accessibility/rhvoice-core/rhvoice-core-1.14.0.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app-accessibility/rhvoice-core/rhvoice-core-1.14.0.ebuild b/app-accessibility/rhvoice-core/rhvoice-core-1.14.0.ebuild index a74a53fbaf..1a33f1bf06 100644 --- a/app-accessibility/rhvoice-core/rhvoice-core-1.14.0.ebuild +++ b/app-accessibility/rhvoice-core/rhvoice-core-1.14.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake +inherit cmake flag-o-matic MY_PN="RHVoice" MY_P="${MY_PN}-${PV}" @@ -84,5 +84,8 @@ src_configure() { -DHARDENING_MACRODEFS= ) + use speech-dispatcher && \ + append-cppflags -DSPD_MAJOR=1 -DSPD_MINOR=0 + cmake_src_configure }