blob: d42fabf96ff168bc7daff1f078a1e2aca2b8116f (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
CMAKE_BUILD_TYPE=RelWithDebInfo
inherit cmake
IGN_MAJOR=4
DESCRIPTION="Classes and tools for interacting with Ignition Fuel"
HOMEPAGE="https://github.com/ignitionrobotics/ign-fuel-tools/"
SRC_URI="https://github.com/ignitionrobotics/ign-fuel-tools/archive/${PN}${IGN_MAJOR}_${PV}.tar.gz"
LICENSE="Apache-2.0"
SLOT="${IGN_MAJOR}"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-libs/tinyxml2:=
net-misc/curl:=
dev-libs/jsoncpp:=
dev-libs/libyaml:=
dev-libs/libzip:=
sci-libs/ignition-common:3=
net-libs/ignition-msgs:5=
dev-libs/protobuf:=
"
#igncurl
DEPEND="${RDEPEND}
dev-build/ignition-cmake:2"
BDEPEND="
dev-build/ignition-cmake:2"
S="${WORKDIR}/gz-fuel-tools-${PN}${IGN_MAJOR}_${PV}"
src_configure() {
local mycmakeargs=(
"-DBUILD_TESTING=$(usex test)"
)
cmake_src_configure
}
|