freebsd-ports/sysutils/dsbmd/Makefile
Danilo G. Baio 89a157cfac sysutils/dsbmd: Update to 1.4
Changes since 1.3

- Detach md(4) devices when they are ejected.
- Open listening socket before scanning attached devices, so that clients can
  connect even if DSBMD is busy with slow devices.
- Ignore the deprecated "large" mount option for msdosfs on FreeBSD >= 12. This
  is necessary for users upgrading their system to FreeBSD 12 without adjusting
  dsbmd.conf. Thanks to Samy Mahmoudi for pointing this out. [1]
- Support for bootable USB drives with ISO-9660 has been added. Thanks to jmp-2
- Support for nvd(4) and uzip memory disks has been added.

PR:		230256 [1]
PR:		230559
Submitted by:	Marcel Kaiser <mk@nic-nac-project.org> (maintainer)
Reported by:	Samy Mahmoudi <samy.mahmoudi@gmail.com> [1]
2018-08-12 12:44:33 +00:00

38 lines
1 KiB
Makefile

# Created by: Marcel Kaiser <mk@nic-nac-project.org>
# $FreeBSD$
PORTNAME= dsbmd
PORTVERSION= 1.4
CATEGORIES= sysutils
MASTER_SITES= http://freeshell.de/~mk/download/
MAINTAINER= mk@nic-nac-project.org
COMMENT= Media mounting daemon
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= tar:tgz
USE_RC_SUBR= dsbmd
PORTDOCS= readme.mdoc
PLIST_FILES= libexec/dsbmd "@sample etc/dsbmd.conf.sample"
OPTIONS_DEFINE= DOCS EXFAT EXT4 LKL MTP NTFS PTP
OPTIONS_DEFAULT= EXT4 MTP NTFS PTP
EXFAT_DESC= exFAT filesystem support
EXT4_DESC= Ext4 filesystem support
LKL_DESC= Btrfs and XFS support through Linux Kernel Library
NTFS_DESC= Mount NTFS filesystems with read and write support
PTP_DESC= Picture Transfer Protocol support
EXFAT_RUN_DEPENDS= mount.exfat:sysutils/fusefs-exfat
EXT4_RUN_DEPENDS= fuse-ext2:sysutils/fusefs-ext2
LKL_RUN_DEPENDS= lklfuse:sysutils/fusefs-lkl
MTP_RUN_DEPENDS= simple-mtpfs:sysutils/fusefs-simple-mtpfs
NTFS_RUN_DEPENDS= ntfs-3g:sysutils/fusefs-ntfs
PTP_RUN_DEPENDS= gphotofs:graphics/fusefs-gphotofs
.include <bsd.port.mk>