app-forensics/libewf: fix fuse dependency

ewfmount links to libfuse.so.2, which is provided by sys-fs/fuse:0 but
 not by sys-fs/fuse:3. Without specifying the slot, sys-fs/fuse:3 would
 satisfy the dependency without providing the required lib, resulting in
 a build with fuse support disabled.
This commit is contained in:
João Lucas 2024-04-02 17:22:19 +01:00
parent c692f456d2
commit 46f5127725
No known key found for this signature in database
GPG key ID: 6404947A3E15D5AB

View file

@ -55,7 +55,7 @@ DEPEND="
RDEPEND=" RDEPEND="
${DEPEND} ${DEPEND}
python? ( ${PYTHON_DEPS} ) python? ( ${PYTHON_DEPS} )
fuse? ( sys-fs/fuse ) fuse? ( sys-fs/fuse:0 )
" "
src_prepare() { src_prepare() {