aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/automount/Makefile
blob: db5330ade0a29cff86ef6bb05cdff817b780ec53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Created by: Slawomir Wojciech Wojtczak <vermaden@interia.pl>
# $FreeBSD$

PORTNAME=   automount
PORTVERSION=    1.4.3
CATEGORIES= sysutils
MASTER_SITES=   https://raw.github.com/vermaden/automount/master/ \
        LOCAL/bdrewery/${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

NO_BUILD=   yes

OPTIONS_DEFINE=     NTFS3G EXT4 EXFAT
OPTIONS_DEFAULT=    NTFS3G EXT4 EXFAT
NTFS3G_DESC=        Enable NTFS write support with ntfs-3g over FUSE
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: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             ${STAGEDIR}${PREFIX}/sbin
    ${INSTALL_DATA}   ${WRKSRC}/automount_devd.conf   ${STAGEDIR}${PREFIX}/etc/devd/automount_devd.conf
    ${INSTALL_DATA}   ${WRKSRC}/automount.conf.sample ${STAGEDIR}${PREFIX}/etc/automount.conf.sample

.include <bsd.port.mk>