mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
37 lines
864 B
Makefile
37 lines
864 B
Makefile
# Created by: Anish Mistry
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fusefs
|
|
PORTVERSION= 2.9.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SF/fuse/fuse-2.X/${PORTVERSION}
|
|
PKGNAMESUFFIX= -libs
|
|
DISTNAME= fuse-${PORTVERSION}
|
|
|
|
MAINTAINER= bapt@FreeBSD.org
|
|
COMMENT= FUSE allows filesystem implementation in userspace
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= MOUNT_FUSE_PATH=${PREFIX}/sbin
|
|
USE_LDCONFIG= yes
|
|
USES= iconv
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
--with-pkgconfigdir=${PREFIX}/libdata/pkgconfig
|
|
DOCS= libs/how-fuse-works \
|
|
libs/kernel.txt
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/include/fuse_kernel.h ${STAGEDIR}${PREFIX}/include/fuse
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}/libs
|
|
@cd ${WRKSRC}/doc/ && ${INSTALL_DATA} ${DOCS:S/libs\///} ${STAGEDIR}${DOCSDIR}/libs
|
|
.endif
|
|
|
|
|
|
.include <bsd.port.mk>
|