commit: cb0f94113f21e3aac5bf72b396e8cd65d2863ef2 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Fri Mar 26 13:11:36 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Mar 26 13:21:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb0f9411
net-im/purple-events: EAPI 7, fix build with slibtool Closes: https://bugs.gentoo.org/778374 Signed-off-by: Sam James <sam <AT> gentoo.org> net-im/purple-events/purple-events-0.99.1.ebuild | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/net-im/purple-events/purple-events-0.99.1.ebuild b/net-im/purple-events/purple-events-0.99.1.ebuild index dfc0c6bc7c5..e4d139ae3b6 100644 --- a/net-im/purple-events/purple-events-0.99.1.ebuild +++ b/net-im/purple-events/purple-events-0.99.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -inherit autotools eutils ltprune +inherit autotools DESCRIPTION="Allows a fine-grained control over libpurple events" HOMEPAGE="http://purple-events.sardemff7.net/" @@ -12,19 +12,23 @@ SRC_URI="https://github.com/sardemff7/purple-events/archive/v${PV}.tar.gz -> ${P LICENSE="GPL-3" SLOT="0" KEYWORDS="amd64 x86" -IUSE="" RDEPEND="net-im/pidgin" -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" dev-util/intltool sys-devel/gettext - virtual/pkgconfig" + virtual/pkgconfig +" src_prepare() { + default + eautoreconf } src_install() { default - prune_libtool_files + + find "${ED}" -name '*.la' -delete || die }