diff options
author | Sam James <sam@gentoo.org> | 2021-03-26 13:11:36 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-26 13:21:48 +0000 |
commit | cb0f94113f21e3aac5bf72b396e8cd65d2863ef2 (patch) | |
tree | d652001853e2af52a686aef21ac2ffe013d639f4 /net-im/purple-events | |
parent | dev-util/ctags: add 20210321.0 (diff) | |
download | gentoo-cb0f94113f21e3aac5bf72b396e8cd65d2863ef2.tar.gz gentoo-cb0f94113f21e3aac5bf72b396e8cd65d2863ef2.tar.bz2 gentoo-cb0f94113f21e3aac5bf72b396e8cd65d2863ef2.zip |
net-im/purple-events: EAPI 7, fix build with slibtool
Closes: https://bugs.gentoo.org/778374
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-im/purple-events')
-rw-r--r-- | net-im/purple-events/purple-events-0.99.1.ebuild | 18 |
1 files 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 dfc0c6bc7c50..e4d139ae3b6f 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 } |