Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwebengine/
Date: Sat, 24 Jun 2017 02:29:55
Message-Id: 1498271381.6f0d04eababcfbe4d723332b492a0404fb1591f0.kensington@gentoo
1 commit: 6f0d04eababcfbe4d723332b492a0404fb1591f0
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 24 02:29:30 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 24 02:29:41 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f0d04ea
7
8 dev-qt/qtwebengine: die if nothing is built
9
10 Gentoo-bug: 601472
11 Package-Manager: Portage-2.3.5, Repoman-2.3.2
12
13 dev-qt/qtwebengine/qtwebengine-5.7.1-r1.ebuild | 5 +++++
14 1 file changed, 5 insertions(+)
15
16 diff --git a/dev-qt/qtwebengine/qtwebengine-5.7.1-r1.ebuild b/dev-qt/qtwebengine/qtwebengine-5.7.1-r1.ebuild
17 index 0542aa911b0..743f5327132 100644
18 --- a/dev-qt/qtwebengine/qtwebengine-5.7.1-r1.ebuild
19 +++ b/dev-qt/qtwebengine/qtwebengine-5.7.1-r1.ebuild
20 @@ -113,5 +113,10 @@ src_configure() {
21 src_install() {
22 qt5-build_src_install
23
24 + # bug 601472
25 + if [[ ! -f ${D%/}${QT5_LIBDIR}/libQt5WebEngine.so ]]; then
26 + die "${CATEGORY}/${PF} failed to build anything. Please report to https://bugs.gentoo.org/"
27 + fi
28 +
29 pax-mark m "${D%/}${QT5_LIBEXECDIR}"/QtWebEngineProcess
30 }