blob: 08b8afcc785b85b6032a7aaa363705d4ce1b61be (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
ECM_QTHELP="false"
ECM_TEST="true"
inherit ecm
if [[ ${PV} != *9999* ]]; then
COMMIT=dcefb65c88e76f1f9eda8b0318006e93d15a0e1e
SRC_URI="https://gitlab.com/caspermeijn/${PN}/repository/${COMMIT}/archive.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
S="${WORKDIR}/${PN}-${COMMIT}-${COMMIT}"
else
EGIT_REPO_URI="https://gitlab.com/caspermeijn/${PN}.git"
inherit git-r3
fi
DESCRIPTION="WS-Discovery client library based on KDSoap"
HOMEPAGE="https://gitlab.com/caspermeijn/kdsoap-ws-discovery-client
https://caspermeijn.gitlab.io/kdsoap-ws-discovery-client"
LICENSE="CC0-1.0 GPL-3+"
SLOT="0"
IUSE="doc"
BDEPEND="
doc? ( app-doc/doxygen[dot] )
"
RDEPEND="
dev-qt/qtcore:5
dev-qt/qtnetwork:5
>=net-libs/kdsoap-1.9.0:="
DEPEND="${RDEPEND}
test? ( dev-qt/qtxml:5 )
"
RESTRICT+=" test"
PATCHES=( "${FILESDIR}"/${PN}-0.2_pre20200317-no-install-docs.patch )
src_prepare() {
ecm_src_prepare
use test || ecm_punt_bogus_dep Qt5 Xml
}
src_configure() {
local mycmakeargs=(
$(cmake_use_find_package doc Doxygen)
-DBUILD_QCH=OFF # does not use ecm_add_qch from ECMAddQch
)
ecm_src_configure
}
src_install() {
use doc && local HTML_DOCS=( "${BUILD_DIR}"/docs/html/. )
ecm_src_install
}
|