summaryrefslogtreecommitdiff
path: root/dev-libs/capnproto/capnproto-0.6.1.1.ebuild
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2018-08-26 15:52:06 +0200
committerKarel Kočí <cynerd@email.cz>2018-08-26 15:52:06 +0200
commitb96fbc3709316217475ac1c121274ae4c5cc6b98 (patch)
treee85537dfb1396cfa626b6ead08e13b618cbb6921 /dev-libs/capnproto/capnproto-0.6.1.1.ebuild
parent37f8be57a99a3daa4324c1e1114ca66d0dbd607d (diff)
downloadgentoo-personal-overlay-b96fbc3709316217475ac1c121274ae4c5cc6b98.tar.gz
gentoo-personal-overlay-b96fbc3709316217475ac1c121274ae4c5cc6b98.tar.bz2
gentoo-personal-overlay-b96fbc3709316217475ac1c121274ae4c5cc6b98.zip
Try to update laminar to latest git version
Diffstat (limited to 'dev-libs/capnproto/capnproto-0.6.1.1.ebuild')
-rw-r--r--dev-libs/capnproto/capnproto-0.6.1.1.ebuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-libs/capnproto/capnproto-0.6.1.1.ebuild b/dev-libs/capnproto/capnproto-0.6.1.1.ebuild
deleted file mode 100644
index b9d8ba2..0000000
--- a/dev-libs/capnproto/capnproto-0.6.1.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2018 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="https://capnproto.org"
-SRC_URI="https://github.com/sandstorm-io/capnproto/archive/3079784bfaf3ba05edacfc63d6d494b76a85a3a5.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0/061"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="static-libs test"
-
-RDEPEND=""
-DEPEND="test? ( dev-cpp/gtest )"
-
-S=${WORKDIR}/capnproto-3079784bfaf3ba05edacfc63d6d494b76a85a3a5/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
-}