blob: cf97d18e3bf9c7fd4383b7a89c33fab94f2fe284 (
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
|
# New ports collection makefile for: radmind
# Date created: 2003-11-17
# Whom: Paul Dlug <paul@aps.org>
#
# $FreeBSD$
#
PORTNAME= radmind
PORTVERSION= 1.13.0
CATEGORIES= sysutils
MASTER_SITES= SF
MAINTAINER= paul@aps.org
COMMENT= Utility for administering filesystem changes
USE_OPENSSL= yes
USE_RC_SUBR= radmind.sh
SUB_LIST= RADMIND_BASE_DIR=${RADMIND_BASE_DIR}
PLIST_SUB= RADMIND_BASE_DIR=${RADMIND_BASE_DIR}
MAKE_JOBS_SAFE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-radminddir=${RADMIND_BASE_DIR}
RADMIND_BASE_DIR?= /var/radmind
MAN1= fsdiff.1 ktcheck.1 lapply.1 lcksum.1 lcreate.1 lfdiff.1 \
lmerge.1 lsort.1 twhich.1 rash.1 repo.1
MAN5= applefile.5
MAN8= radmind.8
DOCS= COPYRIGHT README SPEC
post-install:
# Ugly hack to remove generated man pages
${RM} -rf ${WRKSRC}/tmp
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
.endif
.include <bsd.port.mk>
|