Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/gmpc-mdcover/
Date: Wed, 03 Jan 2018 18:39:19
Message-Id: 1515004687.fab779f57996de19dbe3b846408972aded436c8e.soap@gentoo
1 commit: fab779f57996de19dbe3b846408972aded436c8e
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 3 18:38:07 2018 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 3 18:38:07 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fab779f5
7
8 media-plugins/gmpc-mdcover: Port to EAPI 6
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 .../gmpc-mdcover/gmpc-mdcover-0.20.0.ebuild | 30 ++++++++++++----------
13 1 file changed, 17 insertions(+), 13 deletions(-)
14
15 diff --git a/media-plugins/gmpc-mdcover/gmpc-mdcover-0.20.0.ebuild b/media-plugins/gmpc-mdcover/gmpc-mdcover-0.20.0.ebuild
16 index cd59cfee0f9..148b866d37b 100644
17 --- a/media-plugins/gmpc-mdcover/gmpc-mdcover-0.20.0.ebuild
18 +++ b/media-plugins/gmpc-mdcover/gmpc-mdcover-0.20.0.ebuild
19 @@ -1,9 +1,9 @@
20 -# Copyright 1999-2012 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=3
25 +EAPI=6
26
27 -DESCRIPTION="This plugin fetches cover art, artist art, album and artist information from the file system"
28 +DESCRIPTION="Plugin for fetching cover art, artist art, album and artist information"
29 HOMEPAGE="http://gmpc.wikia.com/wiki/GMPC_PLUGIN_MDCOVER"
30 SRC_URI="mirror://sourceforge/musicpd/${P}.tar.gz"
31
32 @@ -12,21 +12,25 @@ SLOT="0"
33 KEYWORDS="amd64 ppc x86"
34 IUSE="nls"
35
36 -RDEPEND=">=media-sound/gmpc-${PV}
37 - dev-libs/libxml2
38 - || ( x11-libs/gdk-pixbuf:2[jpeg] x11-libs/gtk+:2[jpeg] )"
39 +RDEPEND="
40 + >=media-sound/gmpc-${PV}
41 + dev-libs/libxml2:=
42 + || (
43 + x11-libs/gdk-pixbuf:2[jpeg]
44 + x11-libs/gtk+:2[jpeg]
45 + )"
46 DEPEND="${RDEPEND}
47 virtual/pkgconfig
48 - nls? ( dev-util/intltool
49 - sys-devel/gettext )"
50 + nls? (
51 + dev-util/intltool
52 + sys-devel/gettext
53 + )"
54
55 src_configure() {
56 - econf \
57 - $(use_enable nls) \
58 - --disable-dependency-tracking
59 + econf $(use_enable nls)
60 }
61
62 src_install() {
63 - emake DESTDIR="${D}" install || die
64 - find "${ED}" -name "*.la" -delete || die
65 + default
66 + find "${D}" -name '*.la' -delete || die
67 }