blob: dd752ad717f58d7f41a29ba67567c0f98913f912 (
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
|
# Created by: Dominic Fandrey <kamikaze@bsdforen.de>
# $FreeBSD$
PORTNAME= automounter
PORTVERSION= 1.5
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
PKGMESSAGE= ${WRKSRC}/../NOTES
plist: patch
@(cd ${WRKSRC}; ./plist.sh > ${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 -destdir=${STAGEDIR} \
-prefix=${PREFIX} -amd="/usr/sbin/amd -S")
.include <bsd.port.mk>
|