Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/ell/
Date: Wed, 25 Jul 2018 09:51:14
Message-Id: 1532512261.da01c64241e531ac10cf86d7ee9df8b5a9bdb756.polynomial-c@gentoo
1 commit: da01c64241e531ac10cf86d7ee9df8b5a9bdb756
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 25 09:50:21 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 25 09:51:01 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da01c642
7
8 dev-libs/ell: Install docs.
9
10 Closes: https://bugs.gentoo.org/662080
11 Package-Manager: Portage-2.3.43, Repoman-2.3.10
12
13 dev-libs/ell/ell-0.6-r1.ebuild | 35 +++++++++++++++++++++++++++++++++++
14 1 file changed, 35 insertions(+)
15
16 diff --git a/dev-libs/ell/ell-0.6-r1.ebuild b/dev-libs/ell/ell-0.6-r1.ebuild
17 new file mode 100644
18 index 00000000000..937ba6d0dec
19 --- /dev/null
20 +++ b/dev-libs/ell/ell-0.6-r1.ebuild
21 @@ -0,0 +1,35 @@
22 +# Copyright 1999-2018 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit multilib-minimal
28 +
29 +DESCRIPTION="Embedded Linux Library provides core, low-level functionality for system daemons"
30 +HOMEPAGE="https://01.org/ell"
31 +SRC_URI="https://mirrors.edge.kernel.org/pub/linux/libs/${PN}/${P}.tar.xz"
32 +LICENSE="LGPL-2.1"
33 +SLOT="0"
34 +
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE="glib pie"
37 +
38 +RDEPEND="
39 + glib? ( dev-libs/glib:2[${MULTILIB_USEDEP}] )
40 +"
41 +DEPEND="${RDEPEND}"
42 +
43 +multilib_src_configure() {
44 + local myeconfargs=(
45 + $(use_enable glib)
46 + $(use_enable pie)
47 + )
48 + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
49 +}
50 +
51 +multilib_src_install_all() {
52 + local DOCS=( ChangeLog README )
53 + einstalldocs
54 +
55 + find "${ED}" -name "*.la" -delete || die
56 +}