aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils
diff options
context:
space:
mode:
authorbdrewery <bdrewery@FreeBSD.org>2013-03-04 10:05:25 +0800
committerbdrewery <bdrewery@FreeBSD.org>2013-03-04 10:05:25 +0800
commit62e34ae544dc48066d7f0e404082aa0b26fe37a8 (patch)
tree447fed384344b2c2deec61138b407711a05730ca /sysutils
parent1b7ff8f4e78f8518ce7e3891f67e34fbb5f8df27 (diff)
downloadfreebsd-ports-gnome-62e34ae544dc48066d7f0e404082aa0b26fe37a8.tar.gz
freebsd-ports-gnome-62e34ae544dc48066d7f0e404082aa0b26fe37a8.tar.zst
freebsd-ports-gnome-62e34ae544dc48066d7f0e404082aa0b26fe37a8.zip
- Update to 1.4.2
Changes: - Added BLACKLIST option to ignore problematic devices. - Implement sleep/wait with TIMEOUT for devices that not appear. - Add more useful information to /var/log/automount.log file. Submitted by: vermaden@interia.pl (maintainer, via email)
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/automount/Makefile27
-rw-r--r--sysutils/automount/distinfo4
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