diff options
Diffstat (limited to 'media-plugins/gmpc-jamendo')
-rw-r--r-- | media-plugins/gmpc-jamendo/gmpc-jamendo-11.8.16.ebuild | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/media-plugins/gmpc-jamendo/gmpc-jamendo-11.8.16.ebuild b/media-plugins/gmpc-jamendo/gmpc-jamendo-11.8.16.ebuild index bf20216ce05a..fc37e3e4d09a 100644 --- a/media-plugins/gmpc-jamendo/gmpc-jamendo-11.8.16.ebuild +++ b/media-plugins/gmpc-jamendo/gmpc-jamendo-11.8.16.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 DESCRIPTION="Plugin allows you to browse and preview music available on jamendo" HOMEPAGE="http://gmpc.wikia.com/wiki/GMPC_PLUGIN_JAMENDO" @@ -12,14 +12,18 @@ SLOT="0" KEYWORDS="amd64 x86" IUSE="nls" -RDEPEND=">=media-sound/gmpc-${PV} +RDEPEND=" + >=media-sound/gmpc-${PV} dev-db/sqlite:3 dev-libs/libxml2:2" -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" virtual/pkgconfig dev-util/gob - nls? ( dev-util/intltool - sys-devel/gettext )" + nls? ( + dev-util/intltool + sys-devel/gettext + )" src_configure() { econf $(use_enable nls) @@ -27,5 +31,7 @@ src_configure() { src_install() { default - find "${ED}" -name "*.la" -exec rm {} + || die + + # plugins only + find "${D}" -name '*.la' -delete || die } |