Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/sdformat/
Date: Wed, 12 Oct 2016 15:01:10
Message-Id: 1476284463.e2f3684817681bd4c1d0630efec8d1157eb3dd73.aballier@gentoo
1 commit: e2f3684817681bd4c1d0630efec8d1157eb3dd73
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 12 14:57:36 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 12 15:01:03 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2f36848
7
8 dev-libs/sdformat: bump to 4.2.0
9
10 Package-Manager: portage-2.3.2
11
12 dev-libs/sdformat/Manifest | 1 +
13 dev-libs/sdformat/sdformat-4.2.0.ebuild | 40 +++++++++++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/dev-libs/sdformat/Manifest b/dev-libs/sdformat/Manifest
17 index ac8e6e0..af09a9c 100644
18 --- a/dev-libs/sdformat/Manifest
19 +++ b/dev-libs/sdformat/Manifest
20 @@ -1 +1,2 @@
21 DIST sdformat-4.1.1.tar.bz2 443491 SHA256 e2656984ea0411f5132363c2722b1016524195853b05fdd99e9b7dd3fa4031b1 SHA512 c124d8d4cde4dddd289ce2a83708fe3c6db31df186697b9c8c9d7fbec136cbd8f0418576590897089288885688369dae3ecb0993d74a2228077c7928499bfb32 WHIRLPOOL 3f3ba54d5bda89da87d9d8ff254b153929dd900d7611f36d92e2c5ea930b96416ff7c41b303aa04fb43c464e21739ada48fbfa175ef6dacdb53dfb034ad5cd67
22 +DIST sdformat-4.2.0.tar.bz2 445091 SHA256 75e2d053f97ca33456109b4d7794e6b7d26deef59c778f0d9e25d1369b24b094 SHA512 f4f79a07b009ab09e700de76a1dcb4a6737f894bd30789baea8b99d1476ddb5d7242f783a4c3dda7490fc798b692c79941d30880661ed560eaaf8c16a4449ad1 WHIRLPOOL 6a6ebe3d9371ca2a79b62d8d563931f39a2045541fd7c161485ef51d1ecb2f8bb529bab07b289874a984f6934d147754d2097bd6cf48ee5749f93a1b1a27db87
23
24 diff --git a/dev-libs/sdformat/sdformat-4.2.0.ebuild b/dev-libs/sdformat/sdformat-4.2.0.ebuild
25 new file mode 100644
26 index 00000000..66bc9be
27 --- /dev/null
28 +++ b/dev-libs/sdformat/sdformat-4.2.0.ebuild
29 @@ -0,0 +1,40 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +inherit cmake-utils
37 +
38 +DESCRIPTION="Simulation Description Format (SDF) parser"
39 +HOMEPAGE="http://sdformat.org/"
40 +SRC_URI="http://osrf-distributions.s3.amazonaws.com/sdformat/releases/${P}.tar.bz2"
41 +
42 +LICENSE="Apache-2.0"
43 +# subslot = libsdformat major
44 +SLOT="0/4"
45 +KEYWORDS="~amd64"
46 +IUSE=""
47 +
48 +RDEPEND="
49 + >=dev-libs/urdfdom-1:=
50 + dev-libs/tinyxml
51 + dev-libs/boost:=
52 + sci-libs/ignition-math:2=
53 +"
54 +DEPEND="${RDEPEND}
55 + dev-lang/ruby:*
56 + virtual/pkgconfig
57 +"
58 +CMAKE_BUILD_TYPE=RelWithDebInfo
59 +PATCHES=( "${FILESDIR}/urdfdom1.patch" )
60 +
61 +src_configure() {
62 + echo "set (CMAKE_C_FLAGS_ALL \"${CXXFLAGS} \${CMAKE_C_FLAGS_ALL}\")" > "${S}/cmake/HostCFlags.cmake"
63 + sed -i -e "s/LINK_FLAGS_RELWITHDEBINFO \" \"/LINK_FLAGS_RELWITHDEBINFO \" ${LDFLAGS} \"/" cmake/DefaultCFlags.cmake || die
64 + local mycmakeargs=(
65 + "-DUSE_EXTERNAL_URDF=ON"
66 + "-DUSE_EXTERNAL_TINYXML=ON"
67 + )
68 + cmake-utils_src_configure
69 +}