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 4CEFE1395E2 for ; Sat, 5 Nov 2016 16:47:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9BAFCE0BF6; Sat, 5 Nov 2016 16:47:02 +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 7C8D9E0BF6 for ; Sat, 5 Nov 2016 16:47:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 74901341422 for ; Sat, 5 Nov 2016 16:47:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 190E52EE for ; Sat, 5 Nov 2016 16:46:59 +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: <1478364407.cf51ff87a581e423293f39d112f4d6b2e792e8f4.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/gwenhywfar/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/gwenhywfar/gwenhywfar-4.15.3-r1.ebuild X-VCS-Directories: sys-libs/gwenhywfar/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: cf51ff87a581e423293f39d112f4d6b2e792e8f4 X-VCS-Branch: master Date: Sat, 5 Nov 2016 16:46:59 +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: 16bc78ee-7ac5-4d35-96b8-f94b129be9ce X-Archives-Hash: 4fb00aeb26843321800e70d80699aa40 commit: cf51ff87a581e423293f39d112f4d6b2e792e8f4 Author: Michael Palimaka gentoo org> AuthorDate: Sat Nov 5 16:46:31 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sat Nov 5 16:46:47 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf51ff87 sys-libs/gwenhywfar: use correct qmake for qt4 build Package-Manager: portage-2.3.2 sys-libs/gwenhywfar/gwenhywfar-4.15.3-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-libs/gwenhywfar/gwenhywfar-4.15.3-r1.ebuild b/sys-libs/gwenhywfar/gwenhywfar-4.15.3-r1.ebuild index f8721fb..cbdc15c 100644 --- a/sys-libs/gwenhywfar/gwenhywfar-4.15.3-r1.ebuild +++ b/sys-libs/gwenhywfar/gwenhywfar-4.15.3-r1.ebuild @@ -40,8 +40,8 @@ src_configure() { local extra_opts use fox && guis="${guis} fox16" use gtk && guis="${guis} gtk2" - use qt4 && guis="${guis} qt4" - use qt5 && guis="${guis} qt5" && extra_opts="--with-qt5-qmake="$(qt5_get_bindir)/qmake" --with-qt5-moc="$(qt5_get_bindir)/moc"" + use qt4 && guis="${guis} qt4" && extra_opts="${extra_opts} --with-qt4-moc="$(qt4_get_bindir)/moc"" + use qt5 && guis="${guis} qt5" && extra_opts="${extra_opts} --with-qt5-qmake="$(qt5_get_bindir)/qmake" --with-qt5-moc="$(qt5_get_bindir)/moc"" econf \ --enable-ssl \ $(use_enable debug) \