commit: 8f41df9f4d63ad5e668b5615df76926746659158 Author: Konstantin Tokarev <annulen <AT> yandex <DOT> ru> AuthorDate: Wed Sep 23 13:47:04 2020 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Wed Sep 23 21:53:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f41df9f
sys-devel/dwz: Implement "test" USE flag Closes: https://github.com/gentoo/gentoo/pull/17645 Closes: https://bugs.gentoo.org/744247 Signed-off-by: Konstantin Tokarev <annulen <AT> yandex.ru> Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> sys-devel/dwz/dwz-0.13.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/sys-devel/dwz/dwz-0.13.ebuild b/sys-devel/dwz/dwz-0.13.ebuild index a99b0d53e37..58aaf22593d 100644 --- a/sys-devel/dwz/dwz-0.13.ebuild +++ b/sys-devel/dwz/dwz-0.13.ebuild @@ -14,9 +14,15 @@ S="${WORKDIR}/${PN}" LICENSE="GPL-2+ GPL-3+" SLOT="0" KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" -DEPEND="dev-libs/elfutils" -RDEPEND="${DEPEND}" +RDEPEND="dev-libs/elfutils" +DEPEND="${RDEPEND}" +BDEPEND="test? ( + dev-util/dejagnu + dev-libs/elfutils[utils] +)" src_prepare() { default
