commit: 91d1a520bb402b8c19e3089ddf60a54c6c806577
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun May 11 00:45:14 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 11 00:45:14 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91d1a520
sys-apps/dnotify: call eautoreconf in src_prepare; use BDEPEND
Signed-off-by: Sam James <sam <AT> gentoo.org>
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 43e20482f4b7..c267d8c59219 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)
}