# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit git-r3 toolchain-funcs
DESCRIPTION="High-level CPP Binding for ZeroMQ"
HOMEPAGE="https://github.com/zeromq/cppzmq"
EGIT_REPO_URI="https://github.com/zeromq/cppzmq.git"
EGIT_COMMIT="68a7b09cfce01c4c279fba2cf91686fcfc566848"
SLOT="0"
LICENSE="MIT"
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND=">=net-libs/zeromq-3"
DEPEND=""
src_install() {
doheader zmq.hpp
dodoc README
}
src_test() {
$(tc-getCC) -c ./zmq.hpp -L ./.libs/ -I ./include/ -o ./test.o || die "This version of cppzmq is not compatible with the installed version of net-libs/zeromq"
rm -f ./test.o
}