diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2023-03-10 12:22:08 +0100 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2023-03-10 12:40:47 +0100 |
commit | a2baf61e7de268b0c9c379de77f7c446810f2e06 (patch) | |
tree | 50db3e2299ddd8d6565e1601b70fa772d79fcc72 /x11-plugins/wmappl | |
parent | x11-plugins/wmping: fix implicit function declarations in configure (diff) | |
download | gentoo-a2baf61e7de268b0c9c379de77f7c446810f2e06.tar.gz gentoo-a2baf61e7de268b0c9c379de77f7c446810f2e06.tar.bz2 gentoo-a2baf61e7de268b0c9c379de77f7c446810f2e06.zip |
x11-plugins/wmappl: fix implicit function declarations in configure
Closes: https://bugs.gentoo.org/898932
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'x11-plugins/wmappl')
-rw-r--r-- | x11-plugins/wmappl/wmappl-0.71-r1.ebuild | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/x11-plugins/wmappl/wmappl-0.71-r1.ebuild b/x11-plugins/wmappl/wmappl-0.71-r1.ebuild index 58df593547ac..185a037c7024 100644 --- a/x11-plugins/wmappl/wmappl-0.71-r1.ebuild +++ b/x11-plugins/wmappl/wmappl-0.71-r1.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +inherit autotools + DESCRIPTION="Simple application launcher for the Window Maker dock" HOMEPAGE="https://www.dockapps.net/wmappl" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" @@ -17,3 +19,8 @@ DEPEND="${RDEPEND} LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc ~sparc x86" + +src_prepare() { + default + eautoreconf +} |