commit: 00afb364ffeb7baab53f1d04750cf56399456bb3 Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Sun Dec 22 11:52:06 2019 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Sun Dec 22 11:52:06 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00afb364
media-plugins/gmpc-mserver: Port to EAPI 7 Package-Manager: Portage-2.3.81, Repoman-2.3.20 Signed-off-by: David Seifert <soap <AT> gentoo.org> .../gmpc-mserver/gmpc-mserver-0.20.0.ebuild | 25 +++++++++++----------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/media-plugins/gmpc-mserver/gmpc-mserver-0.20.0.ebuild b/media-plugins/gmpc-mserver/gmpc-mserver-0.20.0.ebuild index 43729642c28..d82252e3d30 100644 --- a/media-plugins/gmpc-mserver/gmpc-mserver-0.20.0.ebuild +++ b/media-plugins/gmpc-mserver/gmpc-mserver-0.20.0.ebuild @@ -1,26 +1,27 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 -DESCRIPTION="This plugin allows you to play local files on a remote or local mpd -server" +DESCRIPTION="This plugin allows you to play local files on a remote or local mpd server" HOMEPAGE="http://gmpc.wikia.com/wiki/GMPC_PLUGIN_MSERVER" SRC_URI="mirror://sourceforge/musicpd/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" -RDEPEND=">=media-sound/gmpc-${PV} - dev-libs/libxml2 - media-libs/taglib - net-libs/libmicrohttpd" -DEPEND="${RDEPEND} - virtual/pkgconfig" +RDEPEND=" + >=media-sound/gmpc-${PV} + dev-libs/libxml2:2 + media-libs/taglib:= + net-libs/libmicrohttpd:=" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" src_install() { default - find "${ED}" -name "*.la" -delete || die + + # plugins only + find "${D}" -name '*.la' -delete || die }
