commit: fc6b0e604e524cf4ba549c33b580fd1d707f5aae Author: Sebastian Parborg <sebastian <AT> blender <DOT> org> AuthorDate: Mon Jul 15 11:01:25 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Jul 16 07:04:02 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc6b0e60
dev-libs/lager: Add missing Qt deps for tests Closes: https://bugs.gentoo.org/936025 Signed-off-by: Sebastian Parborg <darkdefende <AT> gmail.com> Closes: https://github.com/gentoo/gentoo/pull/37566 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-libs/lager/lager-0.1.1-r1.ebuild | 52 ++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/dev-libs/lager/lager-0.1.1-r1.ebuild b/dev-libs/lager/lager-0.1.1-r1.ebuild new file mode 100644 index 000000000000..1c04a551b94f --- /dev/null +++ b/dev-libs/lager/lager-0.1.1-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Library to assist value-oriented design" +HOMEPAGE="https://sinusoid.es/lager/" +SRC_URI="https://github.com/arximboldi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~riscv" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/boost:= + dev-libs/zug + dev-libs/immer +" +DEPEND="${RDEPEND}" +BDEPEND=" + test? ( + <dev-cpp/catch-3:0 + dev-libs/cereal + dev-qt/qtcore + dev-qt/qtconcurrent + dev-qt/qtdeclarative + ) +" + +src_configure() { + local mycmakeargs=( + -DCCACHE=no + -Dlager_BUILD_DEBUGGER_EXAMPLES=OFF + -Dlager_BUILD_DOCS=OFF # Check if docs are more complete on version bumps + -Dlager_BUILD_EXAMPLES=OFF + -Dlager_BUILD_FAILURE_TESTS=OFF + -Dlager_BUILD_TESTS=$(usex test) + ) + + cmake_src_configure +} + +src_compile() { + cmake_src_compile + if use test; then + cmake_build tests + fi +}