forked from Lainports/freebsd-ports
- convert all fuse ports to use the new macro The macro makes sure sysutils/fusefs-libs gets installed and depending on fuse being in base or not it installs sysutils/fusefs-kmod. Approved by: portmgr (bapt)
37 lines
871 B
Makefile
37 lines
871 B
Makefile
# New ports collection makefile for: fusefs-mhddfs
|
|
# Date created: 2009-06-25
|
|
# Whom: Oleg Alexeenkov <proler@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mhddfs
|
|
PORTVERSION= 0.1.37
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://mhddfs.uvw.ru/downloads/
|
|
PKGNAMEPREFIX= fusefs-
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
|
|
MAINTAINER= proler@gmail.com
|
|
COMMENT= Multi HDD [FUSE] File System
|
|
|
|
USE_FUSE= yes
|
|
USE_GMAKE= yes
|
|
USE_PKGCONFIG= build
|
|
MAKE_ARGS= WITHOUT_XATTR=1
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAN1= ${PORTNAME}.1
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
PORTDOCS= README ChangeLog
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MAN1PREFIX}/man/man1
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/ChangeLog ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|