summaryrefslogtreecommitdiff
blob: 9cbe572bad3c629a688dfd2fa679fb1109a98829 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=5

KDE_MINIMAL="${PV}"
KDE_HANDBOOK="optional"
inherit flag-o-matic kde4-base

DESCRIPTION="KDE Desktop Planetarium"
HOMEPAGE="https://kde.org/applications/en/education/org.kde.kstars https://edu.kde.org/kstars"
SRC_URI="mirror://kde/Attic/${PV}/src/${P}.tar.xz"

LICENSE="GPL-2"
SLOT=4/$(get_version_component_range 1-2)
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
IUSE="debug fits indi"

REQUIRED_USE="indi? ( fits )"

DEPEND="
	dev-cpp/eigen:3
	$(add_kdeapps_dep libkdeedu)
	fits? ( >=sci-libs/cfitsio-0.390 )
	indi? ( >=sci-libs/indilib-0.9.8 )
"
RDEPEND="${DEPEND}"

PATCHES=( "${FILESDIR}/${P}-indilib100.patch" )

src_configure() {
	# Bug 308903
	use ppc64 && append-flags -mminimal-toc

	local mycmakeargs=(
		$(cmake-utils_use_with fits CFitsio)
		$(cmake-utils_use_with indi)
	)

	kde4-base_src_configure
}