blob: b36933794cd2f0899ee70704c6de05be1e3a0e6c [file] [log] [blame]
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf-c/protobuf-c-1.1.1.ebuild,v 1.6 2015/07/29 14:42:29 klausman Exp $
EAPI=5
inherit autotools-multilib
MY_PV=${PV/_/-}
MY_P=${PN}-${MY_PV}
DESCRIPTION="code generator and runtime libraries to use Protocol Buffers (protobuf) from pure C"
HOMEPAGE="https://github.com/protobuf-c/protobuf-c/"
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${MY_PV}/${MY_P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="*"
IUSE="static-libs test"
RDEPEND=">=dev-libs/protobuf-2.6.0[${MULTILIB_USEDEP}]"
DEPEND="${RDEPEND}
test? ( ${AUTOTOOLS_DEPEND} )
virtual/pkgconfig[${MULTILIB_USEDEP}]"
S=${WORKDIR}/${MY_P}
src_prepare() {
if ! use test ; then
epatch "${FILESDIR}"/${PN}-1.1.0-no-build-tests.patch
AUTOTOOLS_AUTORECONF=true
fi
autotools-multilib_src_prepare
}
src_configure() {
local myeconfargs=( )
if tc-is-cross-compiler; then
# In ChromeOS cross-compiled dev-libs/protobuf does not have libprotoc.
# Disable protoc here too.
local myeconfargs=( --disable-protoc )
fi
autotools-multilib_src_configure
}