1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00
freebsd-ports/Mk/Uses/fuse.mk
Baptiste Daroussin 421767bd88 Remove the now unneeded ${PORTSDIR} from dependency definition in
The infrastructure Makefiles

PR:		206569
Exp run by:	antoine
Differential Revision:	D5047
2016-03-27 01:23:25 +00:00

24 lines
436 B
Makefile

# $FreeBSD$
#
# handle dependency on the fuse port
#
# Feature: fuse
# Usage: USES=fuse
# Valid ARGS: does not require args
#
# MAINTAINER: portmgr@FreeBSD.org
.if !defined(_INCLUDE_USES_FUSE_MK)
_INCLUDE_USES_FUSE_MK= yes
.if !empty(fuse_ARGS)
IGNORE= USES=fuse does not require args
.endif
LIB_DEPENDS+= libfuse.so:sysutils/fusefs-libs
.if !exists(/sbin/mount_fusefs)
RUN_DEPENDS+= mount_fusefs:sysutils/fusefs-kmod
.endif
.endif