diff options
author | Alexis Ballier <aballier@gentoo.org> | 2017-06-15 14:27:29 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2017-06-15 14:43:25 +0200 |
commit | 504d032c6543e39a02fbe15efe1806eea0a39e3b (patch) | |
tree | 87d2a2c31054471b7481311d5e943c8a4c80e981 /dev-libs/capnproto/capnproto-0.6.1.ebuild | |
parent | dev-libs/capnproto: remove old (diff) | |
download | gentoo-504d032c6543e39a02fbe15efe1806eea0a39e3b.tar.gz gentoo-504d032c6543e39a02fbe15efe1806eea0a39e3b.tar.bz2 gentoo-504d032c6543e39a02fbe15efe1806eea0a39e3b.zip |
dev-libs/capnproto: Bump to 0.6.1
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'dev-libs/capnproto/capnproto-0.6.1.ebuild')
-rw-r--r-- | dev-libs/capnproto/capnproto-0.6.1.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/dev-libs/capnproto/capnproto-0.6.1.ebuild b/dev-libs/capnproto/capnproto-0.6.1.ebuild new file mode 100644 index 000000000000..483f105f07e0 --- /dev/null +++ b/dev-libs/capnproto/capnproto-0.6.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit autotools + +DESCRIPTION="RPC/Serialization system with capabilities support" +HOMEPAGE="http://capnproto.org" +SRC_URI="https://github.com/sandstorm-io/capnproto/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/061" +KEYWORDS="~amd64 ~arm ~arm64" +IUSE="static-libs test" + +RDEPEND="" +DEPEND="test? ( dev-cpp/gtest )" + +S=${WORKDIR}/${P}/c++ + +src_prepare() { + sed -e 's/ldconfig/true/' -i Makefile.am || die + sed -e 's#gtest/lib/libgtest.la gtest/lib/libgtest_main.la#-lgtest -lgtest_main#' -i Makefile.am || die + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) +} + +src_install() { + default + find "${ED}" -name '*.la' -delete +} |