diff options
author | 2019-01-10 09:30:23 +0100 | |
---|---|---|
committer | 2019-01-10 16:50:00 +0100 | |
commit | f1b6a4697cb6bd8b01b005cca0996982fd736a2d (patch) | |
tree | 9b2799b0df1355e0ee40b8c909752698a0803837 /kde-apps/step | |
parent | app-emulation/libvirt: init submodules for live ebuild (diff) | |
download | gentoo-f1b6a4697cb6bd8b01b005cca0996982fd736a2d.tar.gz gentoo-f1b6a4697cb6bd8b01b005cca0996982fd736a2d.tar.bz2 gentoo-f1b6a4697cb6bd8b01b005cca0996982fd736a2d.zip |
kde-apps: Add KDE Applications 18.12.1
Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps/step')
-rw-r--r-- | kde-apps/step/Manifest | 1 | ||||
-rw-r--r-- | kde-apps/step/step-18.12.1.ebuild | 59 |
2 files changed, 60 insertions, 0 deletions
diff --git a/kde-apps/step/Manifest b/kde-apps/step/Manifest index a80cd6fd0113..4e1c768c6360 100644 --- a/kde-apps/step/Manifest +++ b/kde-apps/step/Manifest @@ -1,2 +1,3 @@ DIST step-18.08.3.tar.xz 860260 BLAKE2B 3a5c8f7271288aa6def3656fe711d0fd4a1a7089e4696ea074c2a72b3af16cc3f6269b2bf841294d473e30d7ae77786e70388cd1c065b2a1b9afed052f293d41 SHA512 e9d6af9c9aecba86ba751914d4c1ac18b59da8d5b19ccc45d75461bf63a7730c303ddc0289187304891ed589ee5fcf9504edcc326f4e333e2fd6be391a1b6f9d DIST step-18.12.0.tar.xz 859340 BLAKE2B eb7c670f89267c67537d86033efdadffd93ca475c905f21304c4eac5106a1af94464bba4ffef8cbb8a053a427085859e82a50bea25f461dc2b0afb1b46361437 SHA512 4975a817f562b2b98dec61c50c32dea6bb32e9e210e4292e5f42533b9ad46f4be0128ea4a29606bc1bf850b4a298e2515782bc4c090fc27078852c7b45aa1ffb +DIST step-18.12.1.tar.xz 859320 BLAKE2B b5fee7a59c3cefee6527549eee82048fc69fca10ce1a7a6c4b0c5f1294cf01449f1092dc1670b5a76e55e45eb4253bf2ae534af63a45a3445dc3fe01c0c50838 SHA512 3d825eb2666e8565ba33484bd06fa754f6c474ff01a36a9db663d2eeb904e943a6e8dd94789ba367e21a71bf35f166c833f076ef27f8d54ebb27dbd825cbf12b diff --git a/kde-apps/step/step-18.12.1.ebuild b/kde-apps/step/step-18.12.1.ebuild new file mode 100644 index 000000000000..0b51ebc1edf7 --- /dev/null +++ b/kde-apps/step/step-18.12.1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +KDE_HANDBOOK="optional" +KDE_TEST="forceoptional" +inherit kde5 + +DESCRIPTION="Interactive physics simulator" +HOMEPAGE="https://edu.kde.org/step/" +KEYWORDS="~amd64 ~x86" +IUSE="+gsl nls +qalculate" + +RDEPEND=" + $(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:= ) +" +DEPEND="${RDEPEND} + nls? ( $(add_qt_dep linguist-tools) ) +" + +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 +} |