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 9E0E2158099 for ; Mon, 27 Nov 2023 23:22:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CEBA02BC11F; Mon, 27 Nov 2023 23:22:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 B6BA02BC11C for ; Mon, 27 Nov 2023 23:22:56 +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 5E881342F5E for ; Mon, 27 Nov 2023 23:22:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 466E113F5 for ; Mon, 27 Nov 2023 23:22:52 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1701127295.fa141478b7b42fd3c2d64e748e3608a2e6900362.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/ktextwidgets/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/ktextwidgets/ktextwidgets-9999.ebuild X-VCS-Directories: kde-frameworks/ktextwidgets/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: fa141478b7b42fd3c2d64e748e3608a2e6900362 X-VCS-Branch: master Date: Mon, 27 Nov 2023 23:22:52 +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: 0a3f4304-bcaf-4fda-821c-3bc12e7d2c66 X-Archives-Hash: c531224a2f0c42b960bb47ad294d86cf commit: fa141478b7b42fd3c2d64e748e3608a2e6900362 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Nov 27 20:57:13 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Nov 27 23:21:35 2023 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=fa141478 kde-frameworks/ktextwidgets: add 9999 Signed-off-by: Andreas Sturmlechner gentoo.org> .../ktextwidgets/ktextwidgets-9999.ebuild | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/kde-frameworks/ktextwidgets/ktextwidgets-9999.ebuild b/kde-frameworks/ktextwidgets/ktextwidgets-9999.ebuild new file mode 100644 index 0000000000..19f0fe6cc8 --- /dev/null +++ b/kde-frameworks/ktextwidgets/ktextwidgets-9999.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_DESIGNERPLUGIN="true" +PVCUT=$(ver_cut 1-2) +QTMIN=6.6.0 +inherit ecm frameworks.kde.org + +DESCRIPTION="Framework providing an assortment of widgets for displaying and editing text" + +LICENSE="LGPL-2+ LGPL-2.1+" +KEYWORDS="" +IUSE="speech" + +DEPEND=" + >=dev-qt/qtbase-${QTMIN}:6[gui,widgets] + =kde-frameworks/kcompletion-${PVCUT}*:6 + =kde-frameworks/kconfig-${PVCUT}*:6 + =kde-frameworks/kconfigwidgets-${PVCUT}*:6 + =kde-frameworks/kcoreaddons-${PVCUT}*:6 + =kde-frameworks/ki18n-${PVCUT}*:6 + =kde-frameworks/kservice-${PVCUT}*:6 + =kde-frameworks/kwidgetsaddons-${PVCUT}*:6 + =kde-frameworks/sonnet-${PVCUT}*:6 + speech? ( >=dev-qt/qtspeech-${QTMIN}:6 ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DWITH_TEXT_TO_SPEECH=$(usex speech) + ) + + ecm_src_configure +}