From 91d1a520bb402b8c19e3089ddf60a54c6c806577 Mon Sep 17 00:00:00 2001 From: Sam James Date: Sun, 11 May 2025 01:45:14 +0100 Subject: [PATCH] sys-apps/dnotify: call eautoreconf in src_prepare; use BDEPEND Signed-off-by: Sam James --- sys-apps/dnotify/dnotify-0.18.0-r1.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sys-apps/dnotify/dnotify-0.18.0-r1.ebuild b/sys-apps/dnotify/dnotify-0.18.0-r1.ebuild index 43e20482f4b79..c267d8c592198 100644 --- a/sys-apps/dnotify/dnotify-0.18.0-r1.ebuild +++ b/sys-apps/dnotify/dnotify-0.18.0-r1.ebuild @@ -14,7 +14,7 @@ SLOT="0" KEYWORDS="amd64 ~mips ppc -sparc x86" IUSE="nls" -DEPEND="nls? ( sys-devel/gettext )" +BDEPEND="nls? ( sys-devel/gettext )" PATCHES=( "${FILESDIR}/${P}-nls.patch" @@ -22,7 +22,11 @@ PATCHES=( "${FILESDIR}/${P}-fix-implicit-declarations.patch" ) -src_configure() { +src_prepare() { + default eautoreconf +} + +src_configure() { econf $(use_enable nls) }