63 lines
1.7 KiB
Bash
63 lines
1.7 KiB
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit cmake-utils
|
|
|
|
JSON_VER="3.1.2"
|
|
GOOGLEAPIS_COMMIT="79ab27f3b70ebc221e265d2e8ab30a8cc2d21fa2"
|
|
|
|
DESCRIPTION="Google Cloud Client Library for C++"
|
|
HOMEPAGE="https://cloud.google.com/"
|
|
SRC_URI="https://github.com/GoogleCloudPlatform/google-cloud-cpp/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
|
https://github.com/nlohmann/json/releases/download/v${JSON_VER}/json.hpp -> nlohmann-json-${JSON_VER}-json.hpp
|
|
https://github.com/googleapis/googleapis/archive/${GOOGLEAPIS_COMMIT}.tar.gz -> googleapis-${GOOGLEAPIS_COMMIT}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="dev-libs/protobuf:=
|
|
net-misc/curl
|
|
net-libs/grpc"
|
|
DEPEND="${RDEPEND}
|
|
dev-cpp/gtest"
|
|
|
|
DOCS=( README.md )
|
|
PATCHES=(
|
|
"${FILESDIR}/0001-Make-the-install-target-work.patch"
|
|
"${FILESDIR}/0001-cmake-Fix-GOOGLE_CLOUD_CPP_GRPC_PROVIDER-pkg-config.patch"
|
|
"${FILESDIR}/0002-cmake-set-library-soversions.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
rm -rf "${S}/third_party/googleapis/" || die
|
|
mv "${WORKDIR}/googleapis-${GOOGLEAPIS_COMMIT}/" "${S}/third_party/googleapis/" || die
|
|
|
|
cmake-utils_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DGOOGLE_CLOUD_CPP_GMOCK_PROVIDER=package
|
|
-DGOOGLE_CLOUD_CPP_GRPC_PROVIDER=pkg-config
|
|
-DBUILD_SHARED_LIBS=ON
|
|
)
|
|
|
|
cmake-utils_src_configure
|
|
|
|
mkdir -p "${BUILD_DIR}/external/nlohmann_json/src/" || die
|
|
cp "${DISTDIR}/nlohmann-json-${JSON_VER}-json.hpp" "${BUILD_DIR}/external/nlohmann_json/src/json.hpp" || die
|
|
}
|
|
|
|
src_test() {
|
|
# test fails
|
|
local myctestargs=(
|
|
-E internal_parse_rfc3339_test
|
|
)
|
|
|
|
cmake-utils_src_test
|
|
}
|