diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2013-03-04 02:05:25 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2013-03-04 02:05:25 +0000 |
commit | cc71e3389f0195765a093445e6258093a5938802 (patch) | |
tree | 447fed384344b2c2deec61138b407711a05730ca /sysutils/automount | |
parent | 9abf443362df3aa9093cd118a6301019e98ca31b (diff) | |
download | ports-cc71e3389f0195765a093445e6258093a5938802.tar.gz ports-cc71e3389f0195765a093445e6258093a5938802.zip |
Notes
Diffstat (limited to 'sysutils/automount')
-rw-r--r-- | sysutils/automount/Makefile | 27 | ||||
-rw-r--r-- | sysutils/automount/distinfo | 4 |
2 files changed, 28 insertions, 3 deletions
diff --git a/sysutils/automount/Makefile b/sysutils/automount/Makefile index aef8a6910704..4986c68ef26c 100644 --- a/sysutils/automount/Makefile +++ b/sysutils/automount/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= automount -PORTVERSION= 1.4.1 +PORTVERSION= 1.4.2 CATEGORIES= sysutils MASTER_SITES= https://raw.github.com/vermaden/automount/master/ \ LOCAL/bdrewery/${PORTNAME}/ @@ -16,6 +16,31 @@ PLIST_FILES= sbin/automount etc/devd/automount_devd.conf etc/automount.conf.samp NO_BUILD= yes +OPTIONS_DEFINE= NTFS3G EXT2 EXT4 EXFAT +OPTIONS_DEFAULT= NTFS3G EXT2 EXT4 EXFAT +NTFS3G_DESC= Enable NTFS write support with ntfs-3g over FUSE +EXT2_DESC= Support EXT2 and EXT3 filesystems +EXT4_DESC= Support EXT4 filesystem +EXFAT_DESC= Support Microsoft exFAT filesystem + +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MNTFS3G} +RUN_DEPENDS+= fusefs-ntfs>=0:${PORTSDIR}/sysutils/fusefs-ntfs +.endif + +.if ${PORT_OPTIONS:MEXT2} +RUN_DEPENDS+= e2fsprogs>=0:${PORTSDIR}/sysutils/e2fsprogs +.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 diff --git a/sysutils/automount/distinfo b/sysutils/automount/distinfo index 11122bbf69cb..8f5773fac094 100644 --- a/sysutils/automount/distinfo +++ b/sysutils/automount/distinfo @@ -1,2 +1,2 @@ -SHA256 (automount-1.4.1.tar.gz) = b667670ba2525b8f338358de9185460d3264efad3342d687ed2c3a4a1cf49bdc -SIZE (automount-1.4.1.tar.gz) = 3906 +SHA256 (automount-1.4.2.tar.gz) = de4e1a6d1e32c0c475b1f14cf8962ef1d4acfa0a9b3ae2d01a8b0629fea873c1 +SIZE (automount-1.4.2.tar.gz) = 4379 |