diff options
Diffstat (limited to 'dev-qt/qtwebchannel')
-rw-r--r-- | dev-qt/qtwebchannel/Manifest | 1 | ||||
-rw-r--r-- | dev-qt/qtwebchannel/qtwebchannel-5.15.0_rc2.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/dev-qt/qtwebchannel/Manifest b/dev-qt/qtwebchannel/Manifest index 159278c3..278e0953 100644 --- a/dev-qt/qtwebchannel/Manifest +++ b/dev-qt/qtwebchannel/Manifest @@ -1 +1,2 @@ DIST qtwebchannel-everywhere-src-5.15.0-rc.tar.xz 203000 BLAKE2B 8382730d774bb04a78a192909a0d9facf4d2d273b669c456d73837f38816d7258df79e14d6d8b4255a7f20baca3909b7dd9c67b7c041c33efb9093fafe32b7e4 SHA512 41800a4826fc095dde84b8562389e7fa9e458e814de2b968d2ce9737b405c284721a51b9778281d1bc93e29a53b9c3ce1a715582a5baff44e4fea000ac63e910 +DIST qtwebchannel-everywhere-src-5.15.0-rc2.tar.xz 202860 BLAKE2B c7bb0d3bd066713246e61ef27e249390ebb53d901a45ef00a89f8bf0bc8100e0c14eb546e00ea7596c709f81e6a7de35fae5aaf9de529a8f484bb8c91b1d5461 SHA512 6ee9d4ac25978d6d6203788f0c4874d1f368c73cea4f791ddec5d752b99d97ec5d786461a2411d2e5b37e983395744d947037b03e5e78f6684ddb2fb9ee18e8c diff --git a/dev-qt/qtwebchannel/qtwebchannel-5.15.0_rc2.ebuild b/dev-qt/qtwebchannel/qtwebchannel-5.15.0_rc2.ebuild new file mode 100644 index 00000000..6d9ff183 --- /dev/null +++ b/dev-qt/qtwebchannel/qtwebchannel-5.15.0_rc2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit qt5-build + +DESCRIPTION="Qt5 module for integrating C++ and QML applications with HTML/JavaScript clients" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +fi + +IUSE="qml" + +DEPEND=" + ~dev-qt/qtcore-${PV} + qml? ( ~dev-qt/qtdeclarative-${PV} ) +" +RDEPEND="${DEPEND}" + +src_prepare() { + qt_use_disable_mod qml quick src/src.pro + qt_use_disable_mod qml qml src/webchannel/webchannel.pro + + qt5-build_src_prepare +} |