blob: 2c20c0bfeeac72c24d5ae386278076d50f07f1bf (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit cmake-utils python-single-r1 versionator virtualx
DESCRIPTION="Abstract, manage and coordinate execution of tasks"
HOMEPAGE="https://www.openchemistry.org/projects/molequeue/"
SRC_URI="https://github.com/OpenChemistry/molequeue/archive/${PV}.tar.gz -> ${P}.tar.gz"
SLOT="0"
LICENSE="BSD"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="+client doc server test +zeromq"
REQUIRED_USE="${PYTHON_REQUIRED_USE}
server? ( client )
test? ( server )"
RDEPEND="${PYTHON_DEPS}
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtwidgets:5
zeromq? ( net-libs/cppzmq:0= )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
PATCHES=( "${FILESDIR}"/${P}-cmake.patch )
src_prepare() {
cmake-utils_src_prepare
rm cmake/{GenerateExportHeader.cmake,exportheader.cmake.in} || die
# delete bundled Qt5Json library
rm -r thirdparty || die
}
src_configure() {
local mycmakeargs=(
-DBUILD_DOCUMENTATION=$(usex doc)
-DMoleQueue_BUILD_CLIENT=$(usex client)
-DoleQueue_BUILD_APPLICATION=$(usex server)
-DENABLE_TESTING=$(usex test)
-DUSE_ZERO_MQ=$(usex zeromq)
-DINSTALL_LIBRARY_DIR=$(get_libdir)
)
use zeromq && \
mycmakeargs+=( -DZeroMQ_ROOT_DIR=\"${EPREFIX}/usr\" )
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile all $(usex doc documentation "")
}
src_test() {
VIRTUALX_COMMAND=cmake-utils_src_test
virtualmake
}
src_install() {
use doc && HTML_DOCS=( "${BUILD_DIR}"/docs/html/. )
cmake-utils_src_install
}
|