diff options
author | Davide Pesavento <pesa@gentoo.org> | 2016-04-23 15:49:59 +0200 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2016-04-23 15:49:59 +0200 |
commit | 9882f5502a5290c586acdda6a3d5e0c88bfd0d37 (patch) | |
tree | 6dcc01db79d29f81a41b34530f2db41edd51fdc7 /x11-apps/copyq | |
parent | net-p2p/bitcoinxt-qt: linguist-tools is a build-time dep only (diff) | |
download | gentoo-9882f5502a5290c586acdda6a3d5e0c88bfd0d37.tar.gz gentoo-9882f5502a5290c586acdda6a3d5e0c88bfd0d37.tar.bz2 gentoo-9882f5502a5290c586acdda6a3d5e0c88bfd0d37.zip |
x11-apps/copyq: linguist-tools is a build-time dep only
Gentoo-Bug: 544938
Package-Manager: portage-2.2.28
Diffstat (limited to 'x11-apps/copyq')
-rw-r--r-- | x11-apps/copyq/copyq-2.5.0.ebuild | 16 |
1 files 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 0f9fa1dc9baf..a9e7b65a2ea5 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 } |