freebsd-ports/sysutils/automount/Makefile
Kurt Jaeger 165014fc1e sysutils/automount: upgrade 1.5.8 -> 1.7.0
- The automount has now a new co-author - Rozhuk Ivan.
- New options available in automount.conf config file.
- Filesystem detection/mounting reworked totally
  with file(1)/dd(1)/fstyp(8) as backends.
- Notifications are now possible with libnitify(8) library.
- Automatic detection of DISPLAY variable.
- New automatic wait for device appearance.
- New detection if device is a block device.
- Introduction of CD-ROM support.
- Automatic detection of File Manager with exo-open(1).
- Option REMOVEDIRS is deprecated now.
- Handle '-o large' option for FAT under FreeBSD 11.x and 12.x versions.

PR:		239998
Submitted by:	vermaden@interia.pl (maintainer), Rozhuk Ivan
Reported by:	OlivierW <olivierw1+bugzilla-freebsd@hotmail.com>
Reviewed by:	koobs
2019-09-29 20:01:21 +00:00

36 lines
1.1 KiB
Makefile

# Created by: Slawomir Wojciech Wojtczak <vermaden@interia.pl>
# $FreeBSD$
PORTNAME= automount
PORTVERSION= 1.7.0
CATEGORIES= sysutils
MASTER_SITES= https://raw.github.com/vermaden/automount/master/ \
LOCAL/madpilot/${PORTNAME}/
MAINTAINER= vermaden@interia.pl
COMMENT= FreeBSD's devd(8) based automount solution
LICENSE= BSD2CLAUSE
PLIST_FILES= sbin/automount etc/devd/automount_devd.conf etc/automount.conf.sample
SUB_FILES= pkg-install
NO_BUILD= yes
NO_ARCH= yes
OPTIONS_DEFINE= NTFS3G EXT4 EXFAT
OPTIONS_DEFAULT= NTFS3G EXT4
NTFS3G_DESC= Enable NTFS write support with ntfs-3g over FUSE
NTFS3G_RUN_DEPENDS= fusefs-ntfs>=0:sysutils/fusefs-ntfs
EXT4_DESC= Support EXT4 filesystem
EXT4_RUN_DEPENDS= fusefs-ext4fuse>=0:sysutils/fusefs-ext4fuse
EXFAT_DESC= Support Microsoft exFAT filesystem
EXFAT_RUN_DEPENDS= fusefs-exfat>=0:sysutils/fusefs-exfat
do-install:
${INSTALL_SCRIPT} ${WRKDIR}/automount ${STAGEDIR}${PREFIX}/sbin
${INSTALL_DATA} ${WRKDIR}/automount_devd.conf ${STAGEDIR}${PREFIX}/etc/devd/automount_devd.conf
${INSTALL_DATA} ${WRKDIR}/automount.conf ${STAGEDIR}${PREFIX}/etc/automount.conf.sample
.include <bsd.port.mk>