commit: d0831da263f31933c8a92c40cf86a3c69ef1d9b6 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Tue Jan 28 19:36:45 2025 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Thu Jan 30 16:23:27 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0831da2
sci-astronomy/calcmysky: Drop IUSE qt5/qt6, making Qt6 unconditional Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> sci-astronomy/calcmysky/calcmysky-0.3.3-r1.ebuild | 33 +++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/sci-astronomy/calcmysky/calcmysky-0.3.3-r1.ebuild b/sci-astronomy/calcmysky/calcmysky-0.3.3-r1.ebuild new file mode 100644 index 000000000000..9ace530fff88 --- /dev/null +++ b/sci-astronomy/calcmysky/calcmysky-0.3.3-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 2022-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Simulator of light scattering by planetary atmospheres" +HOMEPAGE="https://github.com/10110111/CalcMySky" +SRC_URI=" + https://github.com/10110111/CalcMySky/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz +" +S="${WORKDIR}/CalcMySky-${PV}" + +LICENSE="GPL-3" +# subslot is soversion +SLOT="0/15" +KEYWORDS="~amd64 ~ppc ~ppc64 ~riscv ~x86" + +DEPEND=" + dev-cpp/eigen:3 + dev-qt/qtbase:6[gui,opengl,widgets,-gles2-only] + media-libs/glm +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DQT_VERSION=6 + ) + + cmake_src_configure +}