forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-qt/qtwebengine: Add missing mesa[egl] use dep
Package-Manager: Portage-2.3.40, Repoman-2.3.9
- Loading branch information
Showing
1 changed file
with
130 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
# Copyright 1999-2018 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
PYTHON_COMPAT=( python2_7 ) | ||
inherit multiprocessing pax-utils python-any-r1 qt5-build | ||
|
||
DESCRIPTION="Library for rendering dynamic web content in Qt5 C++ and QML applications" | ||
|
||
if [[ ${QT5_BUILD_TYPE} == release ]]; then | ||
KEYWORDS="~amd64 ~arm ~arm64 ~x86" | ||
fi | ||
|
||
IUSE="alsa bindist designer geolocation pax_kernel pulseaudio +system-ffmpeg +system-icu widgets" | ||
REQUIRED_USE="designer? ( widgets )" | ||
|
||
RDEPEND=" | ||
app-arch/snappy:= | ||
dev-libs/glib:2 | ||
dev-libs/nspr | ||
dev-libs/nss | ||
~dev-qt/qtcore-${PV} | ||
~dev-qt/qtdeclarative-${PV} | ||
~dev-qt/qtgui-${PV} | ||
~dev-qt/qtnetwork-${PV} | ||
~dev-qt/qtprintsupport-${PV} | ||
~dev-qt/qtwebchannel-${PV}[qml] | ||
dev-libs/expat | ||
dev-libs/libevent:= | ||
dev-libs/libxml2[icu] | ||
dev-libs/libxslt | ||
dev-libs/protobuf:= | ||
dev-libs/re2:= | ||
media-libs/fontconfig | ||
media-libs/freetype | ||
media-libs/harfbuzz:= | ||
media-libs/libpng:0= | ||
>=media-libs/libvpx-1.5:=[svc] | ||
media-libs/libwebp:= | ||
media-libs/mesa[egl] | ||
media-libs/opus | ||
net-libs/libsrtp:0= | ||
sys-apps/dbus | ||
sys-apps/pciutils | ||
sys-libs/libcap | ||
sys-libs/zlib[minizip] | ||
virtual/jpeg:0 | ||
virtual/libudev | ||
x11-libs/libdrm | ||
x11-libs/libX11 | ||
x11-libs/libXcomposite | ||
x11-libs/libXcursor | ||
x11-libs/libXdamage | ||
x11-libs/libXext | ||
x11-libs/libXfixes | ||
x11-libs/libXi | ||
x11-libs/libXrandr | ||
x11-libs/libXrender | ||
x11-libs/libXScrnSaver | ||
x11-libs/libXtst | ||
alsa? ( media-libs/alsa-lib ) | ||
designer? ( ~dev-qt/designer-${PV} ) | ||
geolocation? ( ~dev-qt/qtpositioning-${PV} ) | ||
pulseaudio? ( media-sound/pulseaudio:= ) | ||
system-ffmpeg? ( media-video/ffmpeg:0= ) | ||
system-icu? ( dev-libs/icu:= ) | ||
widgets? ( | ||
~dev-qt/qtdeclarative-${PV}[widgets] | ||
~dev-qt/qtwidgets-${PV} | ||
) | ||
" | ||
DEPEND="${RDEPEND} | ||
${PYTHON_DEPS} | ||
>=app-arch/gzip-1.7 | ||
dev-util/gperf | ||
dev-util/ninja | ||
dev-util/re2c | ||
sys-devel/bison | ||
pax_kernel? ( sys-apps/elfix ) | ||
" | ||
|
||
PATCHES=( | ||
"${FILESDIR}/${PN}-5.9.4-jpeg-9-1.patch" | ||
"${FILESDIR}/${PN}-5.9.4-jpeg-9-2.patch" | ||
"${FILESDIR}/${PN}-5.9.6-gcc8.patch" # bug 657124 | ||
) | ||
|
||
src_prepare() { | ||
use pax_kernel && PATCHES+=( "${FILESDIR}/${PN}-5.9.3-paxmark-mksnapshot.patch" ) | ||
|
||
# bug 620444 - ensure local headers are used | ||
find "${S}" -type f -name "*.pr[fio]" | xargs sed -i -e 's|INCLUDEPATH += |&$$QTWEBENGINE_ROOT/include |' || die | ||
|
||
qt_use_disable_config alsa alsa src/core/config/linux.pri | ||
qt_use_disable_config pulseaudio pulseaudio src/core/config/linux.pri | ||
|
||
qt_use_disable_mod designer webenginewidgets src/plugins/plugins.pro | ||
|
||
qt_use_disable_mod geolocation positioning \ | ||
mkspecs/features/configure.prf \ | ||
src/core/core_chromium.pri \ | ||
src/core/core_common.pri | ||
|
||
qt_use_disable_mod widgets widgets src/src.pro | ||
|
||
qt5-build_src_prepare | ||
} | ||
|
||
src_configure() { | ||
export NINJA_PATH=/usr/bin/ninja | ||
export NINJAFLAGS="${NINJAFLAGS:--j$(makeopts_jobs) -l$(makeopts_loadavg "${MAKEOPTS}" 0) -v}" | ||
|
||
local myqmakeargs=( | ||
$(usex bindist '' 'WEBENGINE_CONFIG+=use_proprietary_codecs') | ||
$(usex system-ffmpeg 'WEBENGINE_CONFIG+=use_system_ffmpeg' '') | ||
$(usex system-icu 'WEBENGINE_CONFIG+=use_system_icu' '') | ||
) | ||
qt5-build_src_configure | ||
} | ||
|
||
src_install() { | ||
qt5-build_src_install | ||
|
||
# bug 601472 | ||
if [[ ! -f ${D%/}${QT5_LIBDIR}/libQt5WebEngine.so ]]; then | ||
die "${CATEGORY}/${PF} failed to build anything. Please report to https://bugs.gentoo.org/" | ||
fi | ||
|
||
pax-mark m "${D%/}${QT5_LIBEXECDIR}"/QtWebEngineProcess | ||
} |