pancake. With FUSE it is possible to implement a fully functional filesystem in a userspace program. Features include: * Simple library API * Simple installation (no need to patch or recompile the kernel) * Secure implementation * Userspace - kernel interface is very efficient * Usable by non privileged users * Runs on Linux kernels 2.4.X and 2.6.X * Has proven very stable over time This package is enabled only for linux and FreeBSD, NetBSD uses its own compatible library.
19 lines
571 B
Makefile
19 lines
571 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1.1.1 2007/02/20 23:48:30 xtraeme Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
FUSEFS_BUILDLINK3_MK:= ${FUSEFS_BUILDLINK3_MK}+
|
|
|
|
.if ${BUILDLINK_DEPTH} == "+"
|
|
BUILDLINK_DEPENDS+= fusefs
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nfusefs}
|
|
BUILDLINK_PACKAGES+= fusefs
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}fusefs
|
|
|
|
.if ${FUSEFS_BUILDLINK3_MK} == "+"
|
|
BUILDLINK_API_DEPENDS.fusefs+= fusefs>=2.5.2
|
|
BUILDLINK_PKGSRCDIR.fusefs?= ../../filesystems/fuse
|
|
.endif # FUSEFS_BUILDLINK3_MK
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|