# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=5 inherit autotools-utils if [ "${PV}" = "9999" ]; then inherit git-2 EGIT_REPO_URI="https://github.com/3rdparty/${PN}.git" KEYWORDS="~amd64" else inherit vcs-snapshot SRC_URI="https://github.com/3rdparty/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64" fi DESCRIPTION="Library that provides an actor style message-passing programming model (in C++)." HOMEPAGE="https://github.com/3rdparty/libprocess" LICENSE="Apache-2.0" SLOT="0" IUSE="" DEPEND="dev-libs/stout dev-libs/boost dev-libs/protobuf dev-libs/libev dev-cpp/glog dev-cpp/gmock dev-cpp/gperftools net-libs/http-parser" src_prepare() { eautoreconf } src_configure() { autotools-utils_src_configure } src_compile() { autotools-utils_src_compile } src_install() { autotools-utils_src_install }