diff options
author | Karel Kočí <cynerd@email.cz> | 2019-02-13 22:22:54 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2019-02-13 22:22:54 +0100 |
commit | ffe344de20cbcec05163937201861d96e8af0c4c (patch) | |
tree | 782eb176687624680b8a3d062ebfb4d329ed4937 /dev-libs/capnproto/capnproto-0.7.0.ebuild | |
parent | 3840030a0b6e9564b782d03d8770ff16bdb31744 (diff) | |
download | gentoo-personal-overlay-ffe344de20cbcec05163937201861d96e8af0c4c.tar.gz gentoo-personal-overlay-ffe344de20cbcec05163937201861d96e8af0c4c.tar.bz2 gentoo-personal-overlay-ffe344de20cbcec05163937201861d96e8af0c4c.zip |
dev-libs/capnproto: drop as it is in upstream
Diffstat (limited to 'dev-libs/capnproto/capnproto-0.7.0.ebuild')
-rw-r--r-- | dev-libs/capnproto/capnproto-0.7.0.ebuild | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-libs/capnproto/capnproto-0.7.0.ebuild b/dev-libs/capnproto/capnproto-0.7.0.ebuild deleted file mode 100644 index 6d681e7..0000000 --- a/dev-libs/capnproto/capnproto-0.7.0.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/v${PV}.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-${PV}/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 -} |