diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2023-03-10 12:24:14 +0100 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2023-03-10 12:40:47 +0100 |
commit | f3e507318058b4bbb239f37fa72456c9b7d2baf2 (patch) | |
tree | 7c6f5be763e3576a82ef2c8dc205d7e7588ac428 | |
parent | x11-plugins/wmappl: fix implicit function declarations in configure (diff) | |
download | gentoo-f3e507318058b4bbb239f37fa72456c9b7d2baf2.tar.gz gentoo-f3e507318058b4bbb239f37fa72456c9b7d2baf2.tar.bz2 gentoo-f3e507318058b4bbb239f37fa72456c9b7d2baf2.zip |
x11-plugins/wmapmload: fix implicit function declarations in configure
Closes: https://bugs.gentoo.org/898930
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
-rw-r--r-- | x11-plugins/wmapmload/wmapmload-0.3.4-r1.ebuild | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/x11-plugins/wmapmload/wmapmload-0.3.4-r1.ebuild b/x11-plugins/wmapmload/wmapmload-0.3.4-r1.ebuild index 4d08e881baf4..c9c1d830237b 100644 --- a/x11-plugins/wmapmload/wmapmload-0.3.4-r1.ebuild +++ b/x11-plugins/wmapmload/wmapmload-0.3.4-r1.ebuild @@ -1,7 +1,9 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 + +inherit autotools DESCRIPTION="dockapp that monitors your apm battery status" HOMEPAGE="http://tnemeth.free.fr/projets/dockapps.html" @@ -17,3 +19,8 @@ RDEPEND="x11-libs/libX11 x11-libs/libXt x11-libs/libXpm" DEPEND="${RDEPEND}" + +src_prepare() { + default + eautoreconf +} |