Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/cracklib/
Date: Sat, 29 May 2021 19:03:40
Message-Id: 1622314983.7751caa6d65d848ad889de0efe58b31ba3ca7696.soap@gentoo
1 commit: 7751caa6d65d848ad889de0efe58b31ba3ca7696
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 29 19:03:03 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat May 29 19:03:03 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7751caa6
7
8 sys-libs/cracklib: add missing NLS dependencies
9
10 * Calls gettext at build time
11 * Links against libintl
12
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14 Signed-off-by: David Seifert <soap <AT> gentoo.org>
15
16 sys-libs/cracklib/cracklib-2.9.7.ebuild | 2 ++
17 1 file changed, 2 insertions(+)
18
19 diff --git a/sys-libs/cracklib/cracklib-2.9.7.ebuild b/sys-libs/cracklib/cracklib-2.9.7.ebuild
20 index fa489b104de..b2cada86052 100644
21 --- a/sys-libs/cracklib/cracklib-2.9.7.ebuild
22 +++ b/sys-libs/cracklib/cracklib-2.9.7.ebuild
23 @@ -24,9 +24,11 @@ REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
24 RDEPEND="python? ( ${PYTHON_DEPS} )
25 zlib? ( >=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}] )"
26 DEPEND="${RDEPEND}
27 + nls? ( virtual/libintl )
28 python? (
29 dev-python/setuptools[${PYTHON_USEDEP}]
30 )"
31 +BDEPEND="nls? ( sys-devel/gettext )"
32
33 S="${WORKDIR}/${MY_P}"