diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-12-05 00:52:07 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-12-08 21:07:00 +0100 |
commit | 88a80f7fd189ed9ef81c6da078ae4e214ba6623e (patch) | |
tree | 6d3cfe4131d6c87c395f3a61bde25291800b0818 /eclass | |
parent | qt5-build.eclass: xkbcommon-{evdev,x11} was dropped in >=5.12.1 (diff) | |
download | gentoo-88a80f7fd189ed9ef81c6da078ae4e214ba6623e.tar.gz gentoo-88a80f7fd189ed9ef81c6da078ae4e214ba6623e.tar.bz2 gentoo-88a80f7fd189ed9ef81c6da078ae4e214ba6623e.zip |
qt5-build.eclass: Drop obsolete qtwebkit quirks
Remaining qtwebkit ebuild uses CMake.
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/qt5-build.eclass | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index ee4875deaad0..70f2bed9e4eb 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -123,14 +123,13 @@ esac IUSE="debug test" -[[ ${PN} == qtwebkit ]] && RESTRICT+=" mirror" # bug 524584 [[ ${QT5_BUILD_TYPE} == release ]] && RESTRICT+=" test" # bug 457182 DEPEND=" dev-lang/perl virtual/pkgconfig " -if [[ (${PN} != qttest && ${PN} != qtwebkit) || (${PN} == qtwebkit && ${QT5_MINOR_VERSION} -lt 9) ]]; then +if [[ ${PN} != qttest ]]; then DEPEND+=" test? ( ~dev-qt/qttest-${PV} )" fi RDEPEND=" @@ -147,7 +146,7 @@ EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install sr # Unpacks the sources. qt5-build_src_unpack() { # bug 307861 - if [[ ${PN} == qtwebengine || ${PN} == qtwebkit ]]; then + if [[ ${PN} == qtwebengine ]]; then eshopts_push -s extglob if is-flagq '-g?(gdb)?([1-9])'; then ewarn |