kde-apps/kross-interpreters: Add 19.12.2-r1 for ruby26
authorAndreas Sturmlechner <asturm@gentoo.org>
Mon, 10 Feb 2020 07:08:01 +0000 (08:08 +0100)
committerAndreas Sturmlechner <asturm@gentoo.org>
Mon, 10 Feb 2020 07:12:07 +0000 (08:12 +0100)
Package-Manager: Portage-2.3.87, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
kde-apps/kross-interpreters/kross-interpreters-19.12.2-r1.ebuild [new file with mode: 0644]

diff --git a/kde-apps/kross-interpreters/kross-interpreters-19.12.2-r1.ebuild b/kde-apps/kross-interpreters/kross-interpreters-19.12.2-r1.ebuild
new file mode 100644 (file)
index 0000000..9b58b59
--- /dev/null
@@ -0,0 +1,42 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 )
+USE_RUBY="ruby25"
+KFMIN=5.63.0
+QTMIN=5.12.3
+inherit ecm kde.org python-single-r1 ruby-single
+
+DESCRIPTION="Kross interpreter plugins for programming languages"
+
+LICENSE="GPL-2" # TODO: CHECK
+SLOT="5"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="+python ruby"
+
+REQUIRED_USE="|| ( python ruby ) python? ( ${PYTHON_REQUIRED_USE} )"
+
+DEPEND="
+       >=kde-frameworks/kross-${KFMIN}:5
+       >=dev-qt/qtgui-${QTMIN}:5
+       >=dev-qt/qtwidgets-${QTMIN}:5
+       python? ( ${PYTHON_DEPS} )
+       ruby? ( ${RUBY_DEPS} )
+"
+RDEPEND="${DEPEND}"
+
+pkg_setup() {
+       use python && python-single-r1_pkg_setup
+       ecm_pkg_setup
+}
+
+src_configure() {
+       local mycmakeargs=(
+               -DBUILD_python=$(usex python)
+               -DBUILD_ruby=$(usex ruby)
+       )
+
+       ecm_src_configure
+}