diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2014-05-09 05:58:45 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2014-05-09 05:58:45 +0800 |
commit | ea9029e1fbf6b324b6c25e30d29d76a58a19be06 (patch) | |
tree | 5133164de282d708552ced86d25a8e7a13674c8e /sysutils | |
parent | 29ef8542d607ff55aea1e2a6b0d14353e524d789 (diff) | |
download | freebsd-ports-gnome-ea9029e1fbf6b324b6c25e30d29d76a58a19be06.tar.gz freebsd-ports-gnome-ea9029e1fbf6b324b6c25e30d29d76a58a19be06.tar.zst freebsd-ports-gnome-ea9029e1fbf6b324b6c25e30d29d76a58a19be06.zip |
- Support staging
- Clarify license
Approved by: portmgr (blanket)
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/automount/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sysutils/automount/Makefile b/sysutils/automount/Makefile index 7b1b95791f50..db5330ade0a2 100644 --- a/sysutils/automount/Makefile +++ b/sysutils/automount/Makefile @@ -10,7 +10,7 @@ MASTER_SITES= https://raw.github.com/vermaden/automount/master/ \ MAINTAINER= vermaden@interia.pl COMMENT= FreeBSD's devd(8) based automount solution -LICENSE= BSD +LICENSE= BSD2CLAUSE PLIST_FILES= sbin/automount etc/devd/automount_devd.conf etc/automount.conf.sample @@ -22,7 +22,6 @@ NTFS3G_DESC= Enable NTFS write support with ntfs-3g over FUSE EXT4_DESC= Support EXT4 filesystem EXFAT_DESC= Support Microsoft exFAT filesystem -NO_STAGE= yes .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MNTFS3G} @@ -38,9 +37,8 @@ RUN_DEPENDS+= fusefs-exfat>=0:${PORTSDIR}/sysutils/fusefs-exfat .endif do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/automount ${PREFIX}/sbin - ${INSTALL_DATA} ${WRKSRC}/automount_devd.conf ${PREFIX}/etc/devd/automount_devd.conf - ${INSTALL_DATA} ${WRKSRC}/automount.conf.sample ${PREFIX}/etc/automount.conf.sample - ${SH} ${PKGINSTALL} ${PKGNAME} POST-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> |