commit: 4ae9bd0b6b3ecae0d7ff8c9a9748d15e34658eb7 Author: Tim Harder <radhermit <AT> gentoo <DOT> org> AuthorDate: Fri Aug 19 02:47:05 2016 +0000 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org> CommitDate: Fri Aug 19 02:51:47 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ae9bd0b
dev-libs/fstrm: version bump to 0.3.0 dev-libs/fstrm/Manifest | 1 + dev-libs/fstrm/fstrm-0.3.0.ebuild | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/dev-libs/fstrm/Manifest b/dev-libs/fstrm/Manifest index e88758c..21d16ad 100644 --- a/dev-libs/fstrm/Manifest +++ b/dev-libs/fstrm/Manifest @@ -1 +1,2 @@ DIST fstrm-0.2.0.tar.gz 434627 SHA256 ad5d39957a4b334a6c7fcc94f308dc7ac75e1997cc642e9bb91a18fc0f42a98a SHA512 4425c3aa57f7c87dfa2a5cc6e3c9b7f8e293086c2092b57b5d227b13dba3ec23cb8460abbfaf153b2f3a27c6a613e31e7a805948cbc5d567707880f353453f42 WHIRLPOOL 25360591002a366bff79a626f6f1514155445eca9608163378e4be1278652c7581f9b893465e0f7bf1653ac140215104174c16e24ebbfeff033e9b0e079192b9 +DIST fstrm-0.3.0.tar.gz 185153 SHA256 531ef29ed2a15dfe4993448eb4e8463c5ed8eebf1472a5608c6ac0a6f62b3a12 SHA512 4134da0ed8579cb6784a419bba76b3be7487ec67b6fad65e0e662b40e668389010381176794d15da9c96339292f0faedc143f87b7ef3815b69bbc8b165af5c4d WHIRLPOOL 5ff46b41a25c581b525b42db6e2926546768318f602c55ec0ccbd5fe0de055803629786ea14e465045d93459ad3ff3a3a07e10e1b598113b0348284610dddee3 diff --git a/dev-libs/fstrm/fstrm-0.3.0.ebuild b/dev-libs/fstrm/fstrm-0.3.0.ebuild new file mode 100644 index 0000000..d37861d --- /dev/null +++ b/dev-libs/fstrm/fstrm-0.3.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit autotools multilib-minimal + +DESCRIPTION="Frame Streams implementation in C" +HOMEPAGE="https://github.com/farsightsec/fstrm" +SRC_URI="https://github.com/farsightsec/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86" +IUSE="static-libs utils" + +RDEPEND="utils? ( dev-libs/libevent[${MULTILIB_USEDEP}] )" +DEPEND="${RDEPEND} + virtual/pkgconfig[${MULTILIB_USEDEP}]" + +src_prepare() { + default + eautoreconf + multilib_copy_sources +} + +multilib_src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_enable utils programs) +} + +multilib_src_install_all() { + default + find "${ED}" -name '*.la' -delete +}
