mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
5b4f2ad658
make things a bit more consistent. Approved by: portmgr (bapt)
24 lines
461 B
Makefile
24 lines
461 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 defined(fuse_ARGS)
|
|
IGNORE= USES=fuse does not require args
|
|
.endif
|
|
|
|
LIB_DEPENDS+= libfuse.so:${PORTSDIR}/sysutils/fusefs-libs
|
|
.if !exists(/sbin/mount_fusefs)
|
|
RUN_DEPENDS+= mount_fusefs:${PORTSDIR}/sysutils/fusefs-kmod
|
|
.endif
|
|
|
|
.endif
|