# Created by: Aragon Gouveia <aragon@phat.za.net>
# $FreeBSD: sysutils/volman/Makefile 327772 2013-09-20 23:05:58Z bapt $

PORTNAME=	volman
PORTVERSION=	0.7
PORTREVISION=	1
CATEGORIES=	sysutils
MASTER_SITES=	http://cloud.github.com/downloads/jmptbl/volman/

MAINTAINER=	aragon@phat.za.net
COMMENT=	FreeBSD specific volume manager

USE_XZ=		yes
USE_RC_SUBR=	volmand
VM_SUB_FILES=	vmount volmand

OPTIONS_DEFINE=	 OPENBOX NTFS3G
OPENBOX_DESC=	Openbox pipemenu script
NTFS3G_DESC=	Use fusefs-ntfs extensions

NO_STAGE=	yes
.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MOPENBOX}
VM_SUB_FILES+=	obvolman
RUN_DEPENDS+=	${LOCALBASE}/bin/xmessage:${PORTSDIR}/x11/xmessage
PLIST_SUB+=	OPENBOX=""
.else
PLIST_SUB+=	OPENBOX="@comment "
.endif

.if ${PORT_OPTIONS:MNTFS3G}
RUN_DEPENDS+=	${LOCALBASE}/bin/ntfs-3g:${PORTSDIR}/sysutils/fusefs-ntfs
SUB_LIST+=	RCFUSEFS=" fusefs"
.else
SUB_LIST+=	RCFUSEFS=""
.endif

do-build:
.for file in ${VM_SUB_FILES}
	${SED} -e 's#%%PREFIX%%#${PREFIX}#g' ${WRKSRC}/${file}.in >${WRKSRC}/${file}
.endfor

do-install:
	${INSTALL_SCRIPT} ${WRKSRC}/volmand ${PREFIX}/sbin
	${INSTALL_SCRIPT} ${WRKSRC}/vmount ${PREFIX}/bin
.if defined(WITH_OPENBOX)
	${INSTALL_SCRIPT} ${WRKSRC}/obvolman ${PREFIX}/bin
.endif
	${INSTALL_DATA} ${WRKSRC}/volman.conf ${PREFIX}/etc/volman.conf.sample

.include <bsd.port.mk>
