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 14310139694 for ; Thu, 20 Apr 2017 13:19:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54D2BE0C13; Thu, 20 Apr 2017 13:19:40 +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 2F7D2E0C13 for ; Thu, 20 Apr 2017 13:19:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4DAAB340A23 for ; Thu, 20 Apr 2017 13:19:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 10AC27436 for ; Thu, 20 Apr 2017 13:19:38 +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: <1492694364.cb9a47049be9fe1036707646efd976333f73b9a2.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/knotifications/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-frameworks/knotifications/knotifications-5.33.0-r1.ebuild X-VCS-Directories: kde-frameworks/knotifications/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: cb9a47049be9fe1036707646efd976333f73b9a2 X-VCS-Branch: master Date: Thu, 20 Apr 2017 13:19:38 +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: 280acf54-c49a-498c-98d5-611f21908bcc X-Archives-Hash: f3a1c7251ed4bafe4402d6c4683aca8d commit: cb9a47049be9fe1036707646efd976333f73b9a2 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Apr 20 12:10:47 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Apr 20 13:19:24 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb9a4704 kde-frameworks/knotifications: Fix USE=dbus build switch Reported-by: aayla.secura.1138 gmail.com Gentoo-bug: 616072 Package-Manager: Portage-2.3.3, Repoman-2.3.1 .../knotifications/knotifications-5.33.0-r1.ebuild | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/kde-frameworks/knotifications/knotifications-5.33.0-r1.ebuild b/kde-frameworks/knotifications/knotifications-5.33.0-r1.ebuild new file mode 100644 index 00000000000..4eb54a810f3 --- /dev/null +++ b/kde-frameworks/knotifications/knotifications-5.33.0-r1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +KDE_TEST="false" +inherit kde5 + +DESCRIPTION="Framework for notifying the user of an event" +LICENSE="LGPL-2.1+" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="dbus nls speech X" + +# drop qtgui subslot operator when QT_MINIMAL >= 5.7.0 +RDEPEND=" + $(add_frameworks_dep kcodecs) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kwindowsystem) + $(add_qt_dep qtdbus) + $(add_qt_dep qtgui '' '' '5=') + $(add_qt_dep qtwidgets) + media-libs/phonon[qt5] + dbus? ( dev-libs/libdbusmenu-qt[qt5] ) + speech? ( $(add_qt_dep qtspeech) ) + X? ( + $(add_qt_dep qtx11extras) + x11-libs/libX11 + x11-libs/libXtst + ) +" +DEPEND="${RDEPEND} + nls? ( $(add_qt_dep linguist-tools) ) + X? ( x11-proto/xproto ) +" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package dbus dbusmenu-qt5) + $(cmake-utils_use_find_package speech Qt5TextToSpeech) + $(cmake-utils_use_find_package X X11) + ) + + kde5_src_configure +}