forked from Lainports/freebsd-ports
- work around kern/181590, provided by Peter Holm - remove @dirrmtry etc/devd from the plist generator changelog: - allow configuring additional arguments for tools like amq, rpcbind, logger - read only fallback for write protected storage devices - report to syslogd(8) PR: 181661 Submitted by: Dominic Fandrey <kamikaze@bsdforen.de> (maintainer)
35 lines
813 B
Makefile
35 lines
813 B
Makefile
# Created by: Dominic Fandrey <kamikaze@bsdforen.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= automounter
|
|
PORTVERSION= 1.4.7
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SF/bsdadminscripts/${PORTNAME}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= kamikaze@bsdforen.de
|
|
COMMENT= Provides scripts to dynamically configure amd
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src
|
|
NO_BUILD= yes
|
|
MANCOMPRESSED= yes
|
|
PKGMESSAGE= ${WRKSRC}/../NOTES
|
|
|
|
MAN5= ${PORTNAME}.conf.5
|
|
MAN8= ${PORTNAME}.8
|
|
|
|
plist: patch
|
|
@cd ${WRKSRC}; ./plist.sh -nodoc > ${PLIST}
|
|
|
|
# Use "amd -S" to avoid a vm locking panic, the scope of which has not yet
|
|
# been determined. See kern/181590.
|
|
do-install:
|
|
@cd ${WRKSRC}; ./install.sh -prefix=${PREFIX} \
|
|
-amd="/usr/sbin/amd -S"
|
|
|
|
post-install:
|
|
@${JOT} -s- -b- 39
|
|
@${CAT} ${PKGMESSAGE}
|
|
@${JOT} -s- -b- 39
|
|
|
|
.include <bsd.port.mk>
|