ports/filesystems/automount/Makefile
Robert Clausecker 6e2da9672f filesystems: add new category for file systems and related utilities
The filesystems category houses file systems and file system utilities.
It is added mainly to turn the sysutils/fusefs-* pseudo-category into
a proper one, but is also useful for the sundry of other file systems
related ports found in the tree.

Ports that seem like they belong there are moved to the new category.
Two ports, sysutils/fusefs-funionfs and sysutils/fusefs-fusepak are
not moved as they currently don't fetch and don't have TIMESTAMP set
in their distinfo, but that is required to be able to push a rename
of the port by the pre-receive hook.

Approved by:	portmgr (rene)
Reviewed by:	mat
Pull Request:	https://github.com/freebsd/freebsd-ports/pull/302
PR:		281988
2024-11-06 16:17:35 +01:00

36 lines
1.2 KiB
Makefile

PORTNAME= automount
DISTVERSION= 1.7.9
CATEGORIES= filesystems sysutils
MASTER_SITES= https://raw.github.com/vermaden/automount/master/
MAINTAINER= vermaden@interia.pl
COMMENT= FreeBSD's devd(8) based automount solution
WWW= https://github.com/vermaden/automount/
LICENSE= BSD2CLAUSE
PLIST_FILES= sbin/automount etc/devd/automount_devd.conf etc/automount.conf.sample
NO_BUILD= yes
NO_ARCH= yes
OPTIONS_DEFINE= NTFS3G EXT4 EXFAT HFS
OPTIONS_DEFAULT= NTFS3G EXT4 EXFAT HFS
NTFS3G_DESC= Enable NTFS write support with ntfs-3g over FUSE
NTFS3G_RUN_DEPENDS= fusefs-ntfs>=0:filesystems/ntfs
EXT4_DESC= Support EXT2/3/4 filesystem
EXT4_RUN_DEPENDS= fusefs-lkl>=0:filesystems/lkl
HFS_DESC= Support macOS HFS filesystem
HFS_RUN_DEPENDS= fusefs-hfsfuse>=0:filesystems/hfsfuse
EXFAT_DESC= Support Microsoft exFAT filesystem
EXFAT_RUN_DEPENDS= fusefs-exfat>=0:filesystems/exfat \
exfat-utils>=0:filesystems/exfat-utils
do-install:
${INSTALL_SCRIPT} ${WRKDIR}/automount ${STAGEDIR}${PREFIX}/sbin
${INSTALL_DATA} ${WRKDIR}/automount_devd.conf \
${STAGEDIR}${PREFIX}/etc/devd
${INSTALL_DATA} ${WRKDIR}/automount.conf \
${STAGEDIR}${PREFIX}/etc/automount.conf.sample
.include <bsd.port.mk>