Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/ivykis/
Date: Fri, 22 Jun 2018 18:43:31
Message-Id: 1529692834.eb677cceb33e50d100cacc2f00e8d13539582dd9.mgorny@gentoo
1 commit: eb677cceb33e50d100cacc2f00e8d13539582dd9
2 Author: Tomas Mozes <hydrapolic <AT> gmail <DOT> com>
3 AuthorDate: Fri Jun 22 12:36:20 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 22 18:40:34 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb677cce
7
8 dev-libs/ivykis: make static libs optional
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-libs/ivykis/ivykis-0.42.3-r1.ebuild | 23 +++++++++++++++++++++++
13 1 file changed, 23 insertions(+)
14
15 diff --git a/dev-libs/ivykis/ivykis-0.42.3-r1.ebuild b/dev-libs/ivykis/ivykis-0.42.3-r1.ebuild
16 new file mode 100644
17 index 00000000000..a5ee1b0d17d
18 --- /dev/null
19 +++ b/dev-libs/ivykis/ivykis-0.42.3-r1.ebuild
20 @@ -0,0 +1,23 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +DESCRIPTION="Library for asynchronous I/O readiness notification"
27 +HOMEPAGE="https://github.com/buytenh/ivykis"
28 +SRC_URI="https://github.com/buytenh/ivykis/archive/v${PV}.tar.gz -> ${P}.tar.gz"
29 +
30 +LICENSE="LGPL-2.1"
31 +SLOT="0"
32 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
33 +IUSE="static-libs"
34 +
35 +src_configure() {
36 + econf $(use_enable static-libs static)
37 +}
38 +
39 +src_install() {
40 + default
41 +
42 + find "${ED}" -name "*.la" -delete || die
43 +}