diff options
author | Alexis Ballier <aballier@gentoo.org> | 2019-02-12 14:19:08 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2019-02-12 14:19:20 +0100 |
commit | 092be26d0ea7b506596519c9a5ed04a51c692ae6 (patch) | |
tree | 6498333219000482eae8f5b9ee3ce067cf87da29 /dev-libs/capnproto/capnproto-0.7.0.ebuild | |
parent | media-sound/sonic-visualiser: build in c++14 mode (required by capnproto 0.7) (diff) | |
download | gentoo-092be26d0ea7b506596519c9a5ed04a51c692ae6.tar.gz gentoo-092be26d0ea7b506596519c9a5ed04a51c692ae6.tar.bz2 gentoo-092be26d0ea7b506596519c9a5ed04a51c692ae6.zip |
dev-libs/capnproto: bump to 0.7.0
Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
Diffstat (limited to 'dev-libs/capnproto/capnproto-0.7.0.ebuild')
-rw-r--r-- | dev-libs/capnproto/capnproto-0.7.0.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-libs/capnproto/capnproto-0.7.0.ebuild b/dev-libs/capnproto/capnproto-0.7.0.ebuild new file mode 100644 index 000000000000..59b088483836 --- /dev/null +++ b/dev-libs/capnproto/capnproto-0.7.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="RPC/Serialization system with capabilities support" +HOMEPAGE="https://capnproto.org" +SRC_URI="https://github.com/sandstorm-io/capnproto/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/070" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="+ssl static-libs test" + +RDEPEND="ssl? ( dev-libs/openssl:0= )" +DEPEND="${RDEPEND} 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 + default + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_with ssl openssl) +} + +src_install() { + default + find "${ED}" -name '*.la' -delete +} |