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 388181396D0 for ; Mon, 9 Oct 2017 23:44:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41DDAE0C5C; Mon, 9 Oct 2017 23:44:53 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 1A3D3E0C5C for ; Mon, 9 Oct 2017 23:44:52 +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 856AC33BEB4 for ; Mon, 9 Oct 2017 23:44:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 13317908E for ; Mon, 9 Oct 2017 23:44:50 +0000 (UTC) From: "Andreas Hüttel" 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 Hüttel" Message-ID: <1507592678.8863c60796c3e6e5c4434a4669f50bc22368e23b.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/klayout/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/klayout/klayout-0.24.10.ebuild sci-electronics/klayout/klayout-9999.ebuild X-VCS-Directories: sci-electronics/klayout/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: 8863c60796c3e6e5c4434a4669f50bc22368e23b X-VCS-Branch: master Date: Mon, 9 Oct 2017 23:44:50 +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: d68000b4-ba79-4220-9995-b013086054cb X-Archives-Hash: 288fbbc5a5077b35253fc758abedc8d5 commit: 8863c60796c3e6e5c4434a4669f50bc22368e23b Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon Oct 9 23:44:14 2017 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Mon Oct 9 23:44:38 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8863c607 sci-electronics/klayout: Fix libdir. It helps to be awake when coding. Bug 633898. Closes: https://bugs.gentoo.org/633898 Package-Manager: Portage-2.3.11, Repoman-2.3.3 sci-electronics/klayout/klayout-0.24.10.ebuild | 4 ++-- sci-electronics/klayout/klayout-9999.ebuild | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sci-electronics/klayout/klayout-0.24.10.ebuild b/sci-electronics/klayout/klayout-0.24.10.ebuild index 5f3954deb38..f4dfd05c1ec 100644 --- a/sci-electronics/klayout/klayout-0.24.10.ebuild +++ b/sci-electronics/klayout/klayout-0.24.10.ebuild @@ -41,9 +41,9 @@ each_ruby_configure() { -platform linux-gentoo \ -bin bin \ -ruby ${RUBY} \ - -qtbin /usr/lib64/qt4/bin \ + -qtbin "/usr/$(get_libdir)/qt4/bin" \ -qtinc /usr/include/qt4 \ - -qtlib /usr/$(get_libdir)/qt4 || die "Configuration failed" + -qtlib "/usr/$(get_libdir)/qt4" || die "Configuration failed" } each_ruby_compile() { diff --git a/sci-electronics/klayout/klayout-9999.ebuild b/sci-electronics/klayout/klayout-9999.ebuild index d6a39fafedf..ad17c9f8d60 100644 --- a/sci-electronics/klayout/klayout-9999.ebuild +++ b/sci-electronics/klayout/klayout-9999.ebuild @@ -48,7 +48,7 @@ each_ruby_configure() { ./build.sh \ -expert \ -dry-run \ - -qmake /usr/lib64/qt5/bin/qmake \ + -qmake "/usr/$(get_libdir)/qt5/bin/qmake" \ -ruby "${RUBY}" \ -python "${PYTHON}" \ -build . \