aboutsummaryrefslogtreecommitdiff
blob: 6ef40677c0c393bf0eafcc5c36071f8e1618203d (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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit cmake-utils

DESCRIPTION="Meta-platform for modular scientific platform development"
HOMEPAGE="https://github.com/d-tk/dtk"
SRC_URI="https://timeraider4u.github.io/distfiles/files/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND="dev-qt/qtcore:5
	dev-qt/qtconcurrent:5
	dev-qt/qtnetwork:5
	dev-qt/qtgui:5
	dev-qt/qtdeclarative:5
	dev-qt/qttest:5
	dev-qt/qtsvg:5
	dev-qt/qtwidgets:5
	dev-qt/qtxml:5"
DEPEND="${RDEPEND}
	dev-lang/swig:0"

src_configure() {
	local mycmakeargs=(
		-DDTK_BUILD_SUPPORT_COMPOSER=ON
		-DDTK_BUILD_SUPPORT_CORE=ON
		-DDTK_BUILD_SUPPORT_CONTAINER=ON
		-DDTK_BUILD_SUPPORT_DISTRIBUTED=ON
		-DDTK_BUILD_SUPPORT_GUI=ON
		-DDTK_BUILD_SUPPORT_MATH=ON
	)
	cmake-utils_src_configure
}