sci-astronomy/calcmysky: add 0.3.4

Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org>
Closes: https://github.com/gentoo/gentoo/pull/41111
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Alexey Sokolov
2025-03-16 12:11:45 +00:00
committed by Sam James
parent 2b0180b5d5
commit 8f80aeca50
2 changed files with 34 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST calcmysky-0.3.3.tar.gz 2167016 BLAKE2B 93c1990a96ce4eb7c033ba3763aac2f347c5575c860522d99d7a0ab813d7bffbd678df32cbf3a249e8043e53560d355cb8656d9fce54df07aa9eb82cdfbdb0f7 SHA512 186281ad2aafac7006117cfb65d91c8053ab3caa9d4f67e5463471538bae40fd8fcc954c3fe9b9d2ca7bba4e6a1fdf8de33980469930cc23b1c21ee4b333917e
DIST calcmysky-0.3.4.tar.gz 2167252 BLAKE2B 4b16eb5afc770095bb9a254d6a1de4c9320e89436363296651345195e4240867a62f9d53854aa03c6f8666d4015cc7349d3b8db37d3e0bee0c9306640156dd6b SHA512 0ec6aec3e4d1227ac0afbc8dbd27bab206b3557e27bb3a3921795cff7e2a16d4e101afd01fd86eec608abcd46710e1b63e6324fb2e2efb2a30fd97cccc2dcca6

View File

@@ -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 ~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
}