Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/fapg/
Date: Sat, 30 Mar 2019 10:00:08
Message-Id: 1553939904.7b51dc85bc732680bdc737834f2212a02e991f74.asturm@gentoo
1 commit: 7b51dc85bc732680bdc737834f2212a02e991f74
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 30 09:50:46 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 30 09:58:24 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b51dc85
7
8 media-sound/fapg: EAPI-7 bump, fix econf run in src_compile
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-sound/fapg/fapg-0.42.ebuild | 19 ++++++++++---------
14 1 file changed, 10 insertions(+), 9 deletions(-)
15
16 diff --git a/media-sound/fapg/fapg-0.42.ebuild b/media-sound/fapg/fapg-0.42.ebuild
17 index 48e9605be9e..22a8f8f9a2f 100644
18 --- a/media-sound/fapg/fapg-0.42.ebuild
19 +++ b/media-sound/fapg/fapg-0.42.ebuild
20 @@ -1,26 +1,27 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=0
26 +EAPI=7
27
28 DESCRIPTION="Fast Audio Playlist Generator"
29 HOMEPAGE="http://royale.zerezo.com/fapg/"
30 SRC_URI="http://royale.zerezo.com/fapg/${P}.tar.gz"
31 -IUSE="xspf"
32 +
33 LICENSE="GPL-2"
34 SLOT="0"
35 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
36 -RDEPEND="xspf? ( >=dev-libs/uriparser-0.6.3 )"
37 -DEPEND="${RDEPEND}"
38 +IUSE="xspf"
39 +
40 +DEPEND="xspf? ( >=dev-libs/uriparser-0.6.3 )"
41 +RDEPEND="${DEPEND}"
42
43 -src_compile() {
44 +src_configure() {
45 local myconf=""
46 use xspf || myconf="${myconf} --disable-xspf"
47 econf ${myconf}
48 - emake || die "make failed"
49 }
50
51 src_install() {
52 - emake DESTDIR="${D}" install || die "make install failed"
53 - dodoc AUTHORS ChangeLog README
54 + emake DESTDIR="${D}" install
55 + einstalldocs
56 }