commit: f66e90fc1c1215524f2af712055c7a599270299c Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org> AuthorDate: Fri Mar 10 11:20:29 2023 +0000 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org> CommitDate: Fri Mar 10 11:40:46 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f66e90fc
x11-plugins/wmping: fix implicit function declarations in configure Closes: https://bugs.gentoo.org/899060 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org> x11-plugins/wmping/wmping-0.2.1-r1.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/x11-plugins/wmping/wmping-0.2.1-r1.ebuild b/x11-plugins/wmping/wmping-0.2.1-r1.ebuild index 489881f2407c..fb1db3e0d48f 100644 --- a/x11-plugins/wmping/wmping-0.2.1-r1.ebuild +++ b/x11-plugins/wmping/wmping-0.2.1-r1.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +inherit autotools + DESCRIPTION="a simple host status monitoring dockapp" HOMEPAGE="https://sourceforge.net/projects/wmping" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" @@ -27,6 +29,11 @@ PATCHES=( DOCS=( AUTHORS CHANGES README ) +src_prepare() { + default + eautoreconf +} + src_install() { if use suid; then default
