summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2017-06-15 14:13:22 +0200
committerAlexis Ballier <aballier@gentoo.org>2017-06-15 14:43:25 +0200
commit6bc4293854b6532c1666eb9bdc576aebe157d948 (patch)
tree65cd30d10ca4402f0806735c49bc3b2e52655de0 /dev-libs/capnproto/capnproto-0.5.3.1.ebuild
parentdev-libs/capnproto: keyword ~arm64 (diff)
downloadgentoo-6bc4293854b6532c1666eb9bdc576aebe157d948.tar.gz
gentoo-6bc4293854b6532c1666eb9bdc576aebe157d948.tar.bz2
gentoo-6bc4293854b6532c1666eb9bdc576aebe157d948.zip
dev-libs/capnproto: remove old
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'dev-libs/capnproto/capnproto-0.5.3.1.ebuild')
-rw-r--r--dev-libs/capnproto/capnproto-0.5.3.1.ebuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-libs/capnproto/capnproto-0.5.3.1.ebuild b/dev-libs/capnproto/capnproto-0.5.3.1.ebuild
deleted file mode 100644
index 9905ac655486..000000000000
--- a/dev-libs/capnproto/capnproto-0.5.3.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# 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"
-KEYWORDS="~amd64 ~arm"
-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
-}