diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-12-05 00:52:07 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-12-06 20:46:16 +0100 |
commit | 56f30cd9bb63cad661de50cefdb7afd4a7e8ccb3 (patch) | |
tree | 4f43c7c8331b6ca09c81be336f79045b446ee796 /eclass | |
parent | dev-qt/qtwebkit: Drop live ebuilds (diff) | |
download | qt-56f30cd9bb63cad661de50cefdb7afd4a7e8ccb3.tar.gz qt-56f30cd9bb63cad661de50cefdb7afd4a7e8ccb3.tar.bz2 qt-56f30cd9bb63cad661de50cefdb7afd4a7e8ccb3.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 ee4875de..70f2bed9 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 |