diff options
Diffstat (limited to 'sysutils/fusefs-afuse/Makefile')
-rw-r--r-- | sysutils/fusefs-afuse/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/sysutils/fusefs-afuse/Makefile b/sysutils/fusefs-afuse/Makefile new file mode 100644 index 000000000000..f713619e53fe --- /dev/null +++ b/sysutils/fusefs-afuse/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: afuse +# Date created: 03 March 2009 +# Whom: Alexander Logvinov <ports@logvinov.com> +# $FreeBSD$ +# + +PORTNAME= afuse +PORTVERSION= 0.2 +CATEGORIES= sysutils +MASTER_SITES= SF +PKGNAMEPREFIX= fusefs- + +MAINTAINER= ports@logvinov.com +COMMENT= An automounting file system implemented in user-space using FUSE + +RUN_DEPENDS= ${LOCALBASE}/modules/fuse.ko:${PORTSDIR}/sysutils/fusefs-kmod +LIB_DEPENDS= fuse.2:${PORTSDIR}/sysutils/fusefs-libs + +GNU_CONFIGURE= yes + +PORTDOCS= AUTHORS ChangeLog README +PLIST_FILES= bin/${PORTNAME} + +MAN1= afuse.1 + +.if !defined(NOPORTDOCS) +SUB_FILES= pkg-message +.endif + +post-install: + ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MAN1PREFIX}/man/man1 +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for i in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} +.endfor + @${CAT} ${PKGMESSAGE} +.endif + +.include <bsd.port.mk> |