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 2B8EC1382C5 for ; Thu, 22 Mar 2018 19:58:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1AB19E08ED; Thu, 22 Mar 2018 19:58:17 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E4911E08ED for ; Thu, 22 Mar 2018 19:58:16 +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 EBDF2335C5A for ; Thu, 22 Mar 2018 19:58:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78E58262 for ; Thu, 22 Mar 2018 19:58:13 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1521748581.f6c2aec1bd0155eaffe2c2756109f8884fc8d893.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/quassel/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/quassel/quassel-0.12.4-r1.ebuild net-irc/quassel/quassel-9999.ebuild X-VCS-Directories: net-irc/quassel/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: f6c2aec1bd0155eaffe2c2756109f8884fc8d893 X-VCS-Branch: master Date: Thu, 22 Mar 2018 19:58:13 +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: 5c67f42a-dd1a-4ae6-94c6-4a9e043c9b07 X-Archives-Hash: 4cd1f9b9519d3f27e0b50e611fb04d58 commit: f6c2aec1bd0155eaffe2c2756109f8884fc8d893 Author: Johannes Huber gentoo org> AuthorDate: Thu Mar 22 19:41:07 2018 +0000 Commit: Johannes Huber gentoo org> CommitDate: Thu Mar 22 19:56:21 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6c2aec1 net-irc/quassel: Fix automagic dep on qtdbus Closes: https://bugs.gentoo.org/644810 Reported-by: Diogo Pereira gmail.com> Thanks-to: Mike Gilbert gentoo.org> Package-Manager: Portage-2.3.24, Repoman-2.3.6 net-irc/quassel/quassel-0.12.4-r1.ebuild | 3 ++- net-irc/quassel/quassel-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/net-irc/quassel/quassel-0.12.4-r1.ebuild b/net-irc/quassel/quassel-0.12.4-r1.ebuild index f8d71149f0d..38cd959578a 100644 --- a/net-irc/quassel/quassel-0.12.4-r1.ebuild +++ b/net-irc/quassel/quassel-0.12.4-r1.ebuild @@ -72,7 +72,7 @@ REQUIRED_USE=" || ( X server monolithic ) crypt? ( || ( server monolithic ) ) dbus? ( || ( X monolithic ) ) - kde? ( || ( X monolithic ) phonon ) + kde? ( || ( X monolithic ) dbus phonon ) phonon? ( || ( X monolithic ) ) postgres? ( || ( server monolithic ) ) snorenotify? ( || ( X monolithic ) ) @@ -97,6 +97,7 @@ src_configure() { -DCMAKE_SKIP_RPATH=ON $(cmake-utils_use_find_package crypt QCA2-QT5) $(cmake-utils_use_find_package dbus dbusmenu-qt5) + $(cmake-utils_use_find_package dbus Qt5DBus) -DWITH_KDE=$(usex kde) -DWITH_OXYGEN=$(usex !kde) -DWANT_MONO=$(usex monolithic) diff --git a/net-irc/quassel/quassel-9999.ebuild b/net-irc/quassel/quassel-9999.ebuild index 1a7e98d0992..81455e360f8 100644 --- a/net-irc/quassel/quassel-9999.ebuild +++ b/net-irc/quassel/quassel-9999.ebuild @@ -74,7 +74,7 @@ DOCS=( AUTHORS ChangeLog README.md ) REQUIRED_USE=" || ( X server monolithic ) crypt? ( || ( server monolithic ) ) - kde? ( || ( X monolithic ) ) + kde? ( || ( X monolithic ) dbus ) ldap? ( || ( server monolithic ) ) monolithic? ( || ( breeze oxygen ) ) postgres? ( || ( server monolithic ) ) @@ -105,6 +105,7 @@ src_configure() { -DCMAKE_SKIP_RPATH=ON $(cmake-utils_use_find_package crypt QCA2-QT5) $(cmake-utils_use_find_package dbus dbusmenu-qt5) + $(cmake-utils_use_find_package dbus Qt5DBus) -DWITH_KDE=$(usex kde) -DWITH_LDAP=$(usex ldap) -DWANT_MONO=$(usex monolithic)