Gentoo Archives: gentoo-commits

From: Davide Pesavento <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwebkit/
Date: Thu, 05 Jul 2018 17:06:27
Message-Id: 1530810371.86b411ceb1cc8df7b359c05b8d3dd807a42051b6.pesa@gentoo
1 commit: 86b411ceb1cc8df7b359c05b8d3dd807a42051b6
2 Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 5 16:46:37 2018 +0000
4 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 5 17:06:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86b411ce
7
8 dev-qt/qtwebkit: fix src_install sanity check on prefix
9
10 Bug: https://bugs.gentoo.org/572056
11 Package-Manager: Portage-2.3.41, Repoman-2.3.9
12
13 dev-qt/qtwebkit/qtwebkit-5.212.0_pre20180120.ebuild | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/dev-qt/qtwebkit/qtwebkit-5.212.0_pre20180120.ebuild b/dev-qt/qtwebkit/qtwebkit-5.212.0_pre20180120.ebuild
17 index 506e3879d34..731937dcc71 100644
18 --- a/dev-qt/qtwebkit/qtwebkit-5.212.0_pre20180120.ebuild
19 +++ b/dev-qt/qtwebkit/qtwebkit-5.212.0_pre20180120.ebuild
20 @@ -98,7 +98,7 @@ pkg_setup() {
21 }
22
23 src_configure() {
24 - # Respect CC, otherwise fails on prefix #395875
25 + # Respect CC, otherwise fails on prefix, bug #395875
26 tc-export CC
27
28 # Multiple rendering bugs on youtube, github, etc without this, bug #547224
29 @@ -134,7 +134,7 @@ src_install() {
30 cmake-utils_src_install
31
32 # bug 572056
33 - if [[ ! -f ${D%/}$(qt5_get_libdir)/libQt5WebKit.so ]]; then
34 + if [[ ! -f ${ED%/}$(qt5_get_libdir)/libQt5WebKit.so ]]; then
35 eerror "${CATEGORY}/${PF} could not build due to a broken ruby environment."
36 die 'Check "eselect ruby" and ensure you have a working ruby in your $PATH'
37 fi