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 391161381F4 for ; Sat, 23 Apr 2016 13:50:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A399121C012; Sat, 23 Apr 2016 13:50:13 +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 4A39F21C012 for ; Sat, 23 Apr 2016 13:50:13 +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 346F5340834 for ; Sat, 23 Apr 2016 13:50:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D59A5D7 for ; Sat, 23 Apr 2016 13:50:08 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1461419399.9882f5502a5290c586acdda6a3d5e0c88bfd0d37.pesa@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/copyq/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-apps/copyq/copyq-2.5.0.ebuild X-VCS-Directories: x11-apps/copyq/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 9882f5502a5290c586acdda6a3d5e0c88bfd0d37 X-VCS-Branch: master Date: Sat, 23 Apr 2016 13:50:08 +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: fd9d9d29-9d2e-4e5b-b468-67a4d879d467 X-Archives-Hash: 21c8276a6d875757c860188078b8ff59 commit: 9882f5502a5290c586acdda6a3d5e0c88bfd0d37 Author: Davide Pesavento gentoo org> AuthorDate: Sat Apr 23 13:49:59 2016 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Sat Apr 23 13:49:59 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9882f550 x11-apps/copyq: linguist-tools is a build-time dep only Gentoo-Bug: 544938 Package-Manager: portage-2.2.28 x11-apps/copyq/copyq-2.5.0.ebuild | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/x11-apps/copyq/copyq-2.5.0.ebuild b/x11-apps/copyq/copyq-2.5.0.ebuild index 0f9fa1d..a9e7b65 100644 --- a/x11-apps/copyq/copyq-2.5.0.ebuild +++ b/x11-apps/copyq/copyq-2.5.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -27,7 +27,6 @@ RDEPEND=" webkit? ( dev-qt/qtwebkit:4 ) ) qt5? ( - dev-qt/linguist-tools:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 @@ -38,18 +37,23 @@ RDEPEND=" ) " DEPEND="${RDEPEND} - qt4? ( test? ( dev-qt/qttest:4 ) ) - qt5? ( test? ( dev-qt/qttest:5 ) ) + qt4? ( + test? ( dev-qt/qttest:4 ) + ) + qt5? ( + dev-qt/linguist-tools:5 + test? ( dev-qt/qttest:5 ) + ) " -S="${WORKDIR}"/CopyQ-${PV} +S=${WORKDIR}/CopyQ-${PV} src_configure() { mycmakeargs=( $(cmake-utils_use_with qt5) $(cmake-utils_use_with webkit) $(cmake-utils_use_with test TESTS) - -DPLUGIN_INSTALL_PREFIX=/usr/$(get_libdir)/${PN}/plugins/ + -DPLUGIN_INSTALL_PREFIX="/usr/$(get_libdir)/${PN}/plugins" ) cmake-utils_src_configure }