commit: 87b49f5187ae0d1f0b588fe1d6550c1c94be3c8f Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Sun Dec 22 11:52:12 2019 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Sun Dec 22 11:52:12 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87b49f51
media-plugins/gmpc-mmkeys: Port to EAPI 7 Package-Manager: Portage-2.3.81, Repoman-2.3.20 Signed-off-by: David Seifert <soap <AT> gentoo.org> .../gmpc-mmkeys/gmpc-mmkeys-11.8.16.ebuild | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/media-plugins/gmpc-mmkeys/gmpc-mmkeys-11.8.16.ebuild b/media-plugins/gmpc-mmkeys/gmpc-mmkeys-11.8.16.ebuild index 77e6924f638..29fc1902510 100644 --- a/media-plugins/gmpc-mmkeys/gmpc-mmkeys-11.8.16.ebuild +++ b/media-plugins/gmpc-mmkeys/gmpc-mmkeys-11.8.16.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 + inherit vala DESCRIPTION="Bind multimedia keys via gnome settings daemon" @@ -11,19 +12,27 @@ SRC_URI="http://download.sarine.nl/Programs/gmpc/11.8/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="amd64 x86" -IUSE="" -RDEPEND="dev-libs/dbus-glib +RDEPEND=" + dev-libs/dbus-glib >=media-sound/gmpc-${PV}" -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" $(vala_depend) virtual/pkgconfig" +src_prepare() { + default + vala_src_prepare +} + src_configure() { econf --disable-static } src_install() { default - find "${ED}" -name "*.la" -exec rm {} + || die + + # plugins only + find "${D}" -name '*.la' -delete || die }
