sys-apps/dnotify: call eautoreconf in src_prepare; use BDEPEND

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2025-05-11 01:45:14 +01:00
parent 2895608c5d
commit 91d1a520bb

View File

@@ -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)
}