From 98051b4039af7d94c96eef2a4426eaa997d7a174 Mon Sep 17 00:00:00 2001 From: "Slawomir Wojciech Wojtczak (vermaden)" Date: Thu, 7 Mar 2013 18:46:54 +0100 Subject: [PATCH] Update for 1.4.3 release. --- Makefile | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9b62e24 --- /dev/null +++ b/Makefile @@ -0,0 +1,46 @@ +# Created by: Slawomir Wojciech Wojtczak +# $FreeBSD: sysutils/automount/Makefile 313387 2013-03-04 02:05:25Z bdrewery $ + +PORTNAME= automount +PORTVERSION= 1.4.2 +CATEGORIES= sysutils +MASTER_SITES= https://raw.github.com/vermaden/automount/master/ \ + LOCAL/bdrewery/${PORTNAME}/ + +MAINTAINER= vermaden@interia.pl +COMMENT= FreeBSD's devd(8) based automount solution + +LICENSE= BSD + +PLIST_FILES= sbin/automount etc/devd/automount_devd.conf etc/automount.conf.sample + +NO_BUILD= yes + +OPTIONS_DEFINE= NTFS3G EXT4 EXFAT +OPTIONS_DEFAULT= NTFS3G EXT4 EXFAT +NTFS3G_DESC= Enable NTFS write support with ntfs-3g over FUSE +EXT4_DESC= Support EXT4 filesystem +EXFAT_DESC= Support Microsoft exFAT filesystem + +.include + +.if ${PORT_OPTIONS:MNTFS3G} +RUN_DEPENDS+= fusefs-ntfs>=0:${PORTSDIR}/sysutils/fusefs-ntfs +.endif + +.if ${PORT_OPTIONS:MEXT4} +RUN_DEPENDS+= fusefs-ext4fuse>=0:${PORTSDIR}/sysutils/fusefs-ext4fuse +.endif + +.if ${PORT_OPTIONS:MEXFAT} +RUN_DEPENDS+= fusefs-exfat>=0:${PORTSDIR}/sysutils/fusefs-exfat +.endif + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/automount ${PREFIX}/sbin + ${INSTALL_DATA} ${WRKSRC}/automount_devd.conf ${PREFIX}/etc/devd/automount_devd.conf + ${INSTALL_DATA} ${WRKSRC}/automount.conf.sample ${PREFIX}/etc/automount.conf.sample + ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL + +.include +