From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1D5A759CB2 for ; Fri, 15 Apr 2016 18:53:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0AF921C02D; Fri, 15 Apr 2016 18:53:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 42CDB21C02D for ; Fri, 15 Apr 2016 18:53:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A07F7340CF7 for ; Fri, 15 Apr 2016 18:53:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E005613FB for ; Fri, 15 Apr 2016 18:53:15 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1460746386.0c16becfd8cdb0aeb817b8e3334600976d21e07f.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/kpimtextedit/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/kpimtextedit/kpimtextedit-16.04.0.ebuild kde-apps/kpimtextedit/kpimtextedit-16.04.49.9999.ebuild kde-apps/kpimtextedit/kpimtextedit-9999.ebuild kde-apps/kpimtextedit/metadata.xml X-VCS-Directories: kde-apps/kpimtextedit/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 0c16becfd8cdb0aeb817b8e3334600976d21e07f X-VCS-Branch: master Date: Fri, 15 Apr 2016 18:53:15 +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-Archives-Salt: 03d424e3-6e3b-40b3-ab90-727641d58601 X-Archives-Hash: c8608593ec57012e68a775143b14d6c0 commit: 0c16becfd8cdb0aeb817b8e3334600976d21e07f Author: Michael Palimaka gentoo org> AuthorDate: Fri Apr 15 18:52:01 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Fri Apr 15 18:53:06 2016 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=0c16becf kde-apps/kpimtextedit: introduce speech USE flag Package-Manager: portage-2.2.28 kde-apps/kpimtextedit/kpimtextedit-16.04.0.ebuild | 11 ++++++++++- kde-apps/kpimtextedit/kpimtextedit-16.04.49.9999.ebuild | 11 ++++++++++- kde-apps/kpimtextedit/kpimtextedit-9999.ebuild | 11 ++++++++++- kde-apps/kpimtextedit/metadata.xml | 3 +++ 4 files changed, 33 insertions(+), 3 deletions(-) diff --git a/kde-apps/kpimtextedit/kpimtextedit-16.04.0.ebuild b/kde-apps/kpimtextedit/kpimtextedit-16.04.0.ebuild index f95a467..9f9ac57 100644 --- a/kde-apps/kpimtextedit/kpimtextedit-16.04.0.ebuild +++ b/kde-apps/kpimtextedit/kpimtextedit-16.04.0.ebuild @@ -12,7 +12,7 @@ inherit kde5 DESCRIPTION="A textedit with PIM-specific features" LICENSE="LGPL-2+" KEYWORDS="~amd64 ~x86" -IUSE="" +IUSE="speech" DEPEND=" $(add_frameworks_dep kcodecs) @@ -31,5 +31,14 @@ DEPEND=" $(add_qt_dep qtgui) $(add_qt_dep qtwidgets) dev-libs/grantlee:5 + speech? ( $(add_qt_dep qtspeech) ) " RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package speech Qt5TextToSpeech) + ) + + kde5_src_configure +} diff --git a/kde-apps/kpimtextedit/kpimtextedit-16.04.49.9999.ebuild b/kde-apps/kpimtextedit/kpimtextedit-16.04.49.9999.ebuild index 6cd7fe9..a60dc98 100644 --- a/kde-apps/kpimtextedit/kpimtextedit-16.04.49.9999.ebuild +++ b/kde-apps/kpimtextedit/kpimtextedit-16.04.49.9999.ebuild @@ -12,7 +12,7 @@ inherit kde5 DESCRIPTION="A textedit with PIM-specific features" LICENSE="LGPL-2+" KEYWORDS="" -IUSE="" +IUSE="speech" DEPEND=" $(add_frameworks_dep kcodecs) @@ -31,5 +31,14 @@ DEPEND=" $(add_qt_dep qtgui) $(add_qt_dep qtwidgets) dev-libs/grantlee:5 + speech? ( $(add_qt_dep qtspeech) ) " RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package speech Qt5TextToSpeech) + ) + + kde5_src_configure +} diff --git a/kde-apps/kpimtextedit/kpimtextedit-9999.ebuild b/kde-apps/kpimtextedit/kpimtextedit-9999.ebuild index 6cd7fe9..a60dc98 100644 --- a/kde-apps/kpimtextedit/kpimtextedit-9999.ebuild +++ b/kde-apps/kpimtextedit/kpimtextedit-9999.ebuild @@ -12,7 +12,7 @@ inherit kde5 DESCRIPTION="A textedit with PIM-specific features" LICENSE="LGPL-2+" KEYWORDS="" -IUSE="" +IUSE="speech" DEPEND=" $(add_frameworks_dep kcodecs) @@ -31,5 +31,14 @@ DEPEND=" $(add_qt_dep qtgui) $(add_qt_dep qtwidgets) dev-libs/grantlee:5 + speech? ( $(add_qt_dep qtspeech) ) " RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package speech Qt5TextToSpeech) + ) + + kde5_src_configure +} diff --git a/kde-apps/kpimtextedit/metadata.xml b/kde-apps/kpimtextedit/metadata.xml index 2fdbf33..b337e66 100644 --- a/kde-apps/kpimtextedit/metadata.xml +++ b/kde-apps/kpimtextedit/metadata.xml @@ -5,4 +5,7 @@ kde@gentoo.org Gentoo KDE Project + + Enable text-to-speech support +