mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
421767bd88
The infrastructure Makefiles PR: 206569 Exp run by: antoine Differential Revision: D5047
24 lines
436 B
Makefile
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
|