mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 07:33:19 -04:00
Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Denis Reva <denis7774@gmail.com>
40 lines
711 B
Bash
40 lines
711 B
Bash
# Copyright 2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="Framework providing common client/server abstractions"
|
|
HOMEPAGE="https://github.com/facebook/wangle"
|
|
SRC_URI="https://github.com/facebook/wangle/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="
|
|
~dev-cpp/fizz-${PV}:=
|
|
~dev-cpp/folly-${PV}:=
|
|
dev-cpp/gflags
|
|
dev-cpp/glog
|
|
dev-libs/double-conversion
|
|
dev-libs/libevent
|
|
dev-libs/libfmt
|
|
dev-libs/openssl:0=
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
dev-cpp/gtest
|
|
"
|
|
|
|
CMAKE_USE_DIR="${S}/wangle"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DLIB_INSTALL_DIR=$(get_libdir)
|
|
)
|
|
|
|
cmake_src_configure
|
|
}
|