You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/kde-apps/kstars/kstars-15.12.3.ebuild

68 lines
1.6 KiB

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
KDE_HANDBOOK="forceoptional"
KDE_PUNT_BOGUS_DEPS="true"
PYTHON_COMPAT=( python2_7 )
inherit kde5 python-single-r1
DESCRIPTION="Desktop Planetarium"
HOMEPAGE="https://www.kde.org/applications/education/kstars https://edu.kde.org/kstars"
KEYWORDS=" ~amd64 ~x86"
IUSE="indi wcs xplanet"
# TODO: AstrometryNet requires new package
# FIXME: doesn't build without sci-libs/cfitsio as of 15.04.0
COMMON_DEPEND="
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kguiaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kinit)
$(add_frameworks_dep kio)
$(add_frameworks_dep knewstuff)
$(add_frameworks_dep kplotting)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kxmlgui)
$(add_qt_dep qtdbus)
$(add_qt_dep qtgui)
$(add_qt_dep qtprintsupport)
$(add_qt_dep qtsvg)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
>=sci-libs/cfitsio-0.390
sys-libs/zlib
indi? (
$(add_frameworks_dep knotifications)
>=sci-libs/indilib-1.0.0
)
wcs? ( sci-astronomy/wcslib )
xplanet? ( x11-misc/xplanet )
"
DEPEND="${COMMON_DEPEND}
dev-cpp/eigen:3
"
RDEPEND="${COMMON_DEPEND}
${PYTHON_DEPS}
"
PATCHES=(
"${FILESDIR}/${PN}-15.12.0-unused-qt-deps.patch"
"${FILESDIR}/${PN}-15.12.0-unused-kf5-deps.patch"
)
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package indi INDI)
$(cmake-utils_use_find_package wcs WCSLIB)
$(cmake-utils_use_find_package xplanet Xplanet)
)
kde5_src_configure
}