mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
61 lines
1.3 KiB
Bash
61 lines
1.3 KiB
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
if [[ ${PV} == *9999* ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/danvratil/${PN}"
|
|
else
|
|
SRC_URI="https://github.com/danvratil/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv ~x86"
|
|
fi
|
|
|
|
DESCRIPTION="C++ Coroutine Library for Qt"
|
|
HOMEPAGE="https://qcoro.dvratil.cz/ https://github.com/danvratil/qcoro"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
IUSE="dbus examples +network qml test websockets"
|
|
|
|
REQUIRED_USE="examples? ( network )"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="
|
|
dev-qt/qtbase:6[dbus?,network?]
|
|
qml? (
|
|
dev-qt/qtbase:6[gui]
|
|
dev-qt/qtdeclarative:6=
|
|
)
|
|
websockets? ( dev-qt/qtwebsockets:6 )
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
examples? ( dev-qt/qtbase:6[concurrent,network,widgets] )
|
|
test? ( dev-qt/qtbase:6[concurrent] )
|
|
"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DUSE_QT_VERSION=6
|
|
-DQCORO_BUILD_EXAMPLES=$(usex examples)
|
|
-DQCORO_WITH_QTDBUS=$(usex dbus)
|
|
-DQCORO_WITH_QTNETWORK=$(usex network)
|
|
-DQCORO_WITH_QML=$(usex qml)
|
|
-DQCORO_WITH_QTQUICK=$(usex qml)
|
|
-DQCORO_WITH_QTTEST=ON
|
|
-DBUILD_TESTING=$(usex test)
|
|
-DQCORO_WITH_QTWEBSOCKETS=$(usex websockets)
|
|
)
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
if use examples; then
|
|
docinto examples
|
|
dodoc -r examples/*
|
|
fi
|
|
cmake_src_install
|
|
}
|