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 8D2DE138350 for ; Sun, 5 Apr 2020 19:47:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F4D6E0CB5; Sun, 5 Apr 2020 19:47:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 75459E0CB5 for ; Sun, 5 Apr 2020 19:47:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 77F7C34EF66 for ; Sun, 5 Apr 2020 19:47:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E1A21C5 for ; Sun, 5 Apr 2020 19:47:36 +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: <1586116036.4fbc459ab212e48ec010b22ce0601e72821bacf0.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/vtk/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/vtk/vtk-8.1.0-r5.ebuild X-VCS-Directories: sci-libs/vtk/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 4fbc459ab212e48ec010b22ce0601e72821bacf0 X-VCS-Branch: master Date: Sun, 5 Apr 2020 19:47:36 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3d398283-76ea-4fd6-9b5a-7e364e965a80 X-Archives-Hash: 62192a21fad280d61429a77878dba251 commit: 4fbc459ab212e48ec010b22ce0601e72821bacf0 Author: Rafael Palomar rr-research no> AuthorDate: Fri Apr 3 19:27:04 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Apr 5 19:47:16 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fbc459a sci-libs/vtk: Fix wrong installation path for libQVTKWidgetPlugin.so This fixes the wrong installation path of libQVTKWidgetPlugin.so. From /usr/usr/... --> /usr/... Closes: https://bugs.gentoo.org/646422 Signed-off-by: Rafael Palomar Ávalos rr-research.no> Closes: https://github.com/gentoo/gentoo/pull/15218 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-libs/vtk/vtk-8.1.0-r5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sci-libs/vtk/vtk-8.1.0-r5.ebuild b/sci-libs/vtk/vtk-8.1.0-r5.ebuild index 18c95fceeae..f1fe50fd32e 100644 --- a/sci-libs/vtk/vtk-8.1.0-r5.ebuild +++ b/sci-libs/vtk/vtk-8.1.0-r5.ebuild @@ -255,7 +255,7 @@ src_configure() { -DVTK_USE_QVTK_QTOPENGL=ON -DQT_WRAP_CPP=ON -DQT_WRAP_UI=ON - -DVTK_INSTALL_QT_DIR="$(qt5_get_libdir)/qt5/plugins/designer" + -DVTK_INSTALL_QT_DIR="$(basename $(qt5_get_libdir))/qt5/plugins/designer" -DDESIRED_QT_VERSION=5 -DVTK_QT_VERSION=5 -DQT_MOC_EXECUTABLE="$(qt5_get_bindir)/moc"