blob: a6f0814b017d2f1adc69eb650d4a2511bbf4cfdf (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake
DESCRIPTION="Protobuf messages and functions for robot applications"
HOMEPAGE="https://github.com/ignitionrobotics/ign-msgs"
SRC_URI="https://github.com/ignitionrobotics/ign-msgs/archive/${PN}5_${PV}.tar.gz"
LICENSE="Apache-2.0"
SLOT="5"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="dev-libs/protobuf:=
sci-libs/ignition-math:6=
dev-libs/tinyxml2:=
"
DEPEND="${RDEPEND}
dev-build/ignition-cmake:2"
BDEPEND="dev-build/ignition-cmake:2"
CMAKE_BUILD_TYPE=RelWithDebInfo
S="${WORKDIR}/gz-msgs-ignition-msgs5_${PV}"
PATCHES=( "${FILESDIR}/protobuf.patch" )
|