Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libee/
Date: Tue, 18 Feb 2020 19:11:52
Message-Id: 1582053058.b494f3adc4171d519211345b7e3abe29e5dfe9c5.soap@gentoo
1 commit: b494f3adc4171d519211345b7e3abe29e5dfe9c5
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 18 19:10:58 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 18 19:10:58 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b494f3ad
7
8 dev-libs/libee: Port to EAPI 7
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 dev-libs/libee/libee-0.4.1.ebuild | 31 +++++++++++++++++--------------
14 1 file changed, 17 insertions(+), 14 deletions(-)
15
16 diff --git a/dev-libs/libee/libee-0.4.1.ebuild b/dev-libs/libee/libee-0.4.1.ebuild
17 index 266f1568695..c00d1015be5 100644
18 --- a/dev-libs/libee/libee-0.4.1.ebuild
19 +++ b/dev-libs/libee/libee-0.4.1.ebuild
20 @@ -1,9 +1,7 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 +# Copyright 1999-2020 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=4
26 -
27 -inherit autotools-utils
28 +EAPI=7
29
30 DESCRIPTION="An Event Expression Library inspired by CEE"
31 HOMEPAGE="http://www.libee.org"
32 @@ -12,22 +10,27 @@ SRC_URI="http://www.libee.org/files/download/${P}.tar.gz"
33 LICENSE="LGPL-2.1"
34 SLOT="0"
35 KEYWORDS="amd64 arm ~arm64 hppa x86 ~amd64-linux"
36 -IUSE="debug static-libs"
37 +IUSE="debug"
38
39 -DEPEND="dev-libs/libxml2
40 +RDEPEND="
41 + dev-libs/libxml2
42 dev-libs/libestr"
43 -RDEPEND="${DEPEND}"
44 -
45 -DOCS=(INSTALL ChangeLog)
46 +DEPEND="${RDEPEND}"
47
48 src_configure() {
49 - local myeconfargs=(
50 + econf \
51 + --disable-static \
52 + --enable-testbench \
53 $(use_enable debug)
54 - --enable-testbench
55 - )
56 - autotools-utils_src_configure
57 }
58
59 src_compile() {
60 - autotools-utils_src_compile -j1
61 + emake -j1
62 +}
63 +
64 +src_install() {
65 + default
66 +
67 + # no static archives
68 + find "${D}" -name '*.la' -delete || die
69 }