forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
analitza-16.04.3.ebuild
51 lines (42 loc) · 962 Bytes
/
analitza-16.04.3.ebuild
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
43
44
45
46
47
48
49
50
51
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
KDE_TEST="forceoptional"
VIRTUALX_REQUIRED="test"
inherit kde5
DESCRIPTION="KDE library for mathematical features"
KEYWORDS="amd64 x86"
IUSE="eigen opengl"
DEPEND="
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)
$(add_qt_dep qtsvg)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
eigen? ( dev-cpp/eigen:3 )
opengl? (
$(add_qt_dep qtopengl)
virtual/opengl
)
"
RDEPEND="${DEPEND}"
src_prepare() {
# Nothing is installed
sed -i \
-e "/add_subdirectory(examples)/ s/^/#DONT/" \
analitzaplot/CMakeLists.txt || die
if ! use test ; then
sed -i \
-e "/add_subdirectory(tests)/ s/^/#DONT/" \
analitza{,gui,plot}/CMakeLists.txt || die
fi
kde5_src_prepare
}
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package eigen Eigen3)
$(cmake-utils_use_find_package opengl OpenGL)
)
kde5_src_configure
}