diff options
author | David Michael <fedora.dm0@gmail.com> | 2020-03-13 15:21:47 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2020-03-15 14:45:57 -0400 |
commit | 814ab1294edf3565fc02fe63d15d6fa7ca886429 (patch) | |
tree | 4959e21aee90ca443164f37db1f9a7daf0e4d6b9 /eclass | |
parent | net-libs/libtirpc: depend on sys-libs/queue-standalone for musl (diff) | |
download | gentoo-814ab1294edf3565fc02fe63d15d6fa7ca886429.tar.gz gentoo-814ab1294edf3565fc02fe63d15d6fa7ca886429.tar.bz2 gentoo-814ab1294edf3565fc02fe63d15d6fa7ca886429.zip |
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 <fedora.dm0@gmail.com>
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/fcaps.eclass | 7 |
1 files 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 |