From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C8D781384B4 for ; Tue, 10 Nov 2015 08:58:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53D9CE0783; Tue, 10 Nov 2015 08:58:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DA833E0783 for ; Tue, 10 Nov 2015 08:58:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F19D23405C3 for ; Tue, 10 Nov 2015 08:58:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 672D3A44 for ; Tue, 10 Nov 2015 08:58:19 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1447145892.2fd6abffcdc4c227351070effe56b0e5d0576bf6.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/capnproto/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/capnproto/Manifest dev-libs/capnproto/capnproto-0.5.3.ebuild dev-libs/capnproto/metadata.xml X-VCS-Directories: dev-libs/capnproto/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 2fd6abffcdc4c227351070effe56b0e5d0576bf6 X-VCS-Branch: master Date: Tue, 10 Nov 2015 08:58:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 002e653e-76c9-47cd-a76d-efc6ed1c2c16 X-Archives-Hash: a5c66dade6cdebb5b3896acfacbc3829 commit: 2fd6abffcdc4c227351070effe56b0e5d0576bf6 Author: Alexis Ballier gentoo org> AuthorDate: Tue Nov 10 08:58:03 2015 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Tue Nov 10 08:58:12 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fd6abff dev-libs/capnproto: Initial import. Bug #519680. Package-Manager: portage-2.2.24 Signed-off-by: Alexis Ballier gentoo.org> dev-libs/capnproto/Manifest | 1 + dev-libs/capnproto/capnproto-0.5.3.ebuild | 37 +++++++++++++++++++++++++++++++ dev-libs/capnproto/metadata.xml | 8 +++++++ 3 files changed, 46 insertions(+) diff --git a/dev-libs/capnproto/Manifest b/dev-libs/capnproto/Manifest new file mode 100644 index 0000000..1090e83 --- /dev/null +++ b/dev-libs/capnproto/Manifest @@ -0,0 +1 @@ +DIST capnproto-0.5.3.tar.gz 992100 SHA256 13c66dc1ce2a038562cddeaf48f71f0bb0e15a1d1a1775efa80dff3cdebeea6c SHA512 c861d8573f9b37bdce3800cc5f875d972017f01176343a118d3fde70d9d19ad3e0af759ef81f2ab1296515a5ef53ce3aa8f8359843ec1a579d9b48d1603a7d16 WHIRLPOOL fb9530092bf37047c76e6b44dcd8457207a7c1e0a41c86e4e8b79ba66edf9cd4641de78ee17d0f38e1b7213543fcc96be0639aa2dd72c7e7cf61d6e0b022a529 diff --git a/dev-libs/capnproto/capnproto-0.5.3.ebuild b/dev-libs/capnproto/capnproto-0.5.3.ebuild new file mode 100644 index 0000000..c12553b --- /dev/null +++ b/dev-libs/capnproto/capnproto-0.5.3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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" +KEYWORDS="~amd64" +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 +} diff --git a/dev-libs/capnproto/metadata.xml b/dev-libs/capnproto/metadata.xml new file mode 100644 index 0000000..2f31686 --- /dev/null +++ b/dev-libs/capnproto/metadata.xml @@ -0,0 +1,8 @@ + + + + + aballier@gentoo.org + Alexis Ballier + +