blob: 0ef8019aaf2d52ca10c95a8b547413a7eddb3e48 (
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
38
39
40
41
42
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
USE_RUBY="ruby23"
inherit kde5 python-single-r1 ruby-single
DESCRIPTION="Kross interpreter plugins for programming languages"
KEYWORDS="~amd64 ~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_prepare() {
sed -i -e "/find_package(PythonLibs/s/REQUIRED//" CMakeLists.txt || die
kde5_src_prepare
}
src_configure() {
local mycmakeargs=(
-DBUILD_python=$(usex python)
-DBUILD_ruby=$(usex ruby)
)
kde5_src_configure
}
|