blob: 4b577776782d06bbc3f82bad92d251e3ce84e634 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# 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
}
|