Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/celt/
Date: Tue, 29 May 2018 20:10:39
Message-Id: 1527624614.d78a208d9e0c6a3c06ff763ddcc768f48efbbb42.bman@gentoo
1 commit: d78a208d9e0c6a3c06ff763ddcc768f48efbbb42
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 29 15:37:32 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Tue May 29 20:10:14 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d78a208d
7
8 media-libs/celt: bump EAPI
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 media-libs/celt/celt-0.5.1.3.ebuild | 10 ++++------
13 1 file changed, 4 insertions(+), 6 deletions(-)
14
15 diff --git a/media-libs/celt/celt-0.5.1.3.ebuild b/media-libs/celt/celt-0.5.1.3.ebuild
16 index 9f9e2598cac..aa8cfc218fb 100644
17 --- a/media-libs/celt/celt-0.5.1.3.ebuild
18 +++ b/media-libs/celt/celt-0.5.1.3.ebuild
19 @@ -1,7 +1,7 @@
20 -# Copyright 1999-2017 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI="2"
25 +EAPI=6
26
27 DESCRIPTION="CELT is a very low delay audio codec designed for high-quality communications"
28 HOMEPAGE="http://www.celt-codec.org/"
29 @@ -22,8 +22,6 @@ src_configure() {
30 }
31
32 src_install() {
33 - emake DESTDIR="${D}" install || die "emake install failed."
34 - dodoc README TODO || die "dodoc failed."
35 -
36 - use static-libs || find "${D}" -name '*.la' -delete
37 + default
38 + use static-libs || (find "${D}" -name '*.la' -delete || die "Pruning failed")
39 }