mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
db533faaee
- use new LIB_DEPENDS notation in Mk/Uses to fix static svn building [1] Approved by: portmgr (babt@) [1]
25 lines
490 B
Makefile
25 lines
490 B
Makefile
# $FreeBSD$
|
|
#
|
|
# handle dependency on the fuse port
|
|
#
|
|
# MAINTAINER: portmgr@FreeBSD.org
|
|
#
|
|
# Feature: fuse
|
|
# Usage: USES=fuse
|
|
# Valid ARGS: does not require args
|
|
#
|
|
#
|
|
.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) || ${OSVERSION} < 1000019
|
|
RUN_DEPENDS+= mount_fusefs:${PORTSDIR}/sysutils/fusefs-kmod
|
|
.endif
|
|
|
|
.endif
|