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/kross-interpreters/kross-interpreters-18.12.3-...

38 lines
748 B

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 )
USE_RUBY="ruby25"
inherit kde5 python-single-r1 ruby-single
DESCRIPTION="Kross interpreter plugins for programming languages"
KEYWORDS="~amd64 ~arm64 ~x86"
IUSE="+python ruby"
REQUIRED_USE="|| ( python ruby ) python? ( ${PYTHON_REQUIRED_USE} )"
DEPEND="
$(add_frameworks_dep kross)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
python? ( ${PYTHON_DEPS} )
ruby? ( ${RUBY_DEPS} )
"
RDEPEND="${DEPEND}"
pkg_setup() {
use python && python-single-r1_pkg_setup
kde5_pkg_setup
}
src_configure() {
local mycmakeargs=(
-DBUILD_python=$(usex python)
-DBUILD_ruby=$(usex ruby)
)
kde5_src_configure
}