diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-04-18 12:40:20 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-04-18 16:29:37 +0200 |
commit | 77996f0bd46af757187d387e251f25fdf21a33f8 (patch) | |
tree | 18c9cc45de05d82b4e08b5966b62d51dc802872e /kde-apps/step | |
parent | www-client/opera-beta: Old (diff) | |
download | gentoo-77996f0bd46af757187d387e251f25fdf21a33f8.tar.gz gentoo-77996f0bd46af757187d387e251f25fdf21a33f8.tar.bz2 gentoo-77996f0bd46af757187d387e251f25fdf21a33f8.zip |
kde-apps: Add KDE Applications 19.04.0
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
Diffstat (limited to 'kde-apps/step')
-rw-r--r-- | kde-apps/step/Manifest | 1 | ||||
-rw-r--r-- | kde-apps/step/step-19.04.0.ebuild | 60 |
2 files changed, 61 insertions, 0 deletions
diff --git a/kde-apps/step/Manifest b/kde-apps/step/Manifest index f47096b5a581..c8cc2a5196cd 100644 --- a/kde-apps/step/Manifest +++ b/kde-apps/step/Manifest @@ -1 +1,2 @@ DIST step-18.12.3.tar.xz 860296 BLAKE2B 7a6411334758c0277c12401d2d22112c0e3e2befb2cdef68694ac4ba3544329a007b9db2a5607564ef2710b2282a2d72a4c4a0de945de3361b6dd4b400b71ef7 SHA512 5ac3ab33d48aa4d151ea7152a380aba95eabc7887400d20fe50392a6c18a5017b162208c47d8de6d019e8a462608a2f4da3bacaa64cbc966770971b6a55b1b82 +DIST step-19.04.0.tar.xz 860532 BLAKE2B dd866fe427932c0f395f1014003cdf448668fec54f49e1b71ac4fcc7d5821a0aba98269ffab0c55a5c1ae230edc7a0759ec89495e9e3665fca4b610f5b7fee59 SHA512 a4793beaa2d334cc8a03993e575b71d15381af27b2dd284a73ef49f37d1fa1537314402cfd394d11b2256b37224244cc0c361b969bf95b109ee9344e66bd1bab diff --git a/kde-apps/step/step-19.04.0.ebuild b/kde-apps/step/step-19.04.0.ebuild new file mode 100644 index 000000000000..0c8734816df7 --- /dev/null +++ b/kde-apps/step/step-19.04.0.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +KDE_HANDBOOK="optional" +KDE_TEST="forceoptional" +inherit kde5 + +DESCRIPTION="Interactive physics simulator" +HOMEPAGE="https://edu.kde.org/step/" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="+gsl nls +qalculate" + +BDEPEND=" + nls? ( $(add_qt_dep linguist-tools) ) +" +DEPEND=" + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kcrash) + $(add_frameworks_dep khtml) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kio) + $(add_frameworks_dep knewstuff) + $(add_frameworks_dep kparts) + $(add_frameworks_dep kplotting) + $(add_frameworks_dep ktextwidgets) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kxmlgui) + $(add_qt_dep qtgui) + $(add_qt_dep qtopengl) + $(add_qt_dep qtsvg) + $(add_qt_dep qtwidgets) + $(add_qt_dep qtxml) + >=dev-cpp/eigen-3.2:3 + sci-libs/cln + gsl? ( sci-libs/gsl:= ) + qalculate? ( >=sci-libs/libqalculate-0.9.5:= ) +" +RDEPEND="${DEPEND}" + +src_prepare() { + kde5_src_prepare + + # FIXME: Drop duplicate upstream + sed -e '/find_package.*Xml Test/ s/^/#/' \ + -i stepcore/CMakeLists.txt || die +} + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package gsl GSL) + $(cmake-utils_use_find_package qalculate Qalculate) + ) + kde5_src_configure +} |