svn commit: r313387 - head/sysutils/automount
Bryan Drewery
bdrewery at FreeBSD.org
Mon Mar 4 02:05:26 UTC 2013
Author: bdrewery
Date: Mon Mar 4 02:05:25 2013
New Revision: 313387
URL: http://svnweb.freebsd.org/changeset/ports/313387
Log:
- 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 at interia.pl (maintainer, via email)
Modified:
head/sysutils/automount/Makefile
head/sysutils/automount/distinfo
Modified: head/sysutils/automount/Makefile
==============================================================================
--- head/sysutils/automount/Makefile Mon Mar 4 01:55:42 2013 (r313386)
+++ head/sysutils/automount/Makefile Mon Mar 4 02:05:25 2013 (r313387)
@@ -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/aut
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
Modified: head/sysutils/automount/distinfo
==============================================================================
--- head/sysutils/automount/distinfo Mon Mar 4 01:55:42 2013 (r313386)
+++ head/sysutils/automount/distinfo Mon Mar 4 02:05:25 2013 (r313387)
@@ -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
More information about the svn-ports-head
mailing list