9ada3eb868
Fixes mount permissions issues in previous version Fixes hang during pkg install Removed pkg-install script which violated policy against starting services and replaced with a pkg-message instructing user to restart devd PR: ports/246026 Submitted by: vermaden@interia.pl
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
# Created by: Slawomir Wojciech Wojtczak <vermaden@interia.pl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= automount
|
|
DISTVERSION= 1.7.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://raw.github.com/vermaden/automount/master/
|
|
|
|
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
|
|
|
|
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 EXT2/3/4 filesystem
|
|
EXT4_RUN_DEPENDS= fusefs-ext2>=0:sysutils/fusefs-ext2
|
|
EXFAT_DESC= Support Microsoft exFAT filesystem
|
|
EXFAT_RUN_DEPENDS= fusefs-exfat>=0:sysutils/fusefs-exfat \
|
|
exfat-utils>=0:sysutils/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>
|