From 814ab1294edf3565fc02fe63d15d6fa7ca886429 Mon Sep 17 00:00:00 2001 From: David Michael Date: Fri, 13 Mar 2020 15:21:47 -0400 Subject: [PATCH] fcaps.eclass: use BDEPEND for EAPI 7 The eclass installs libcap to execute the setcap program, so it must be installed in /. Optional libcap linking is handled by the USE=caps flag, which is unrelated to this eclass, so the DEPEND declaration is not needed on EAPI 7. Closes: https://bugs.gentoo.org/700018 Signed-off-by: David Michael Signed-off-by: Mike Gilbert --- eclass/fcaps.eclass | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/eclass/fcaps.eclass b/eclass/fcaps.eclass index 467f955f5e9a..2b6e5be4683d 100644 --- a/eclass/fcaps.eclass +++ b/eclass/fcaps.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: fcaps.eclass @@ -34,7 +34,10 @@ _FCAPS_ECLASS=1 IUSE="+filecaps" # We can't use libcap-ng atm due to #471414. -DEPEND="filecaps? ( sys-libs/libcap )" +case "${EAPI:-0}" in + [0-6]) DEPEND="filecaps? ( sys-libs/libcap )" ;; + *) BDEPEND="filecaps? ( sys-libs/libcap )" ;; +esac # @ECLASS-VARIABLE: FILECAPS # @DEFAULT_UNSET -- 2.26.2