blob: 66850f5bd45b5887d650edb52e91c3498f15fb8a (
plain)
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
|
# $NetBSD: Makefile.common,v 1.4 2000/09/15 15:59:33 skrll Exp $
#
# common make file fragment shared by all amanda-* pkgs.
#
.if ${OPSYS} == "NetBSD"
AMANDA_GROUP= operator
.elif ${OPSYS} == "SunOS"
AMANDA_GROUP= sysadmin
.endif
AMANDA_USER?= backup
AMANDA_VAR?= /var/amanda
USE_LIBTOOL= yes
LTCONFIG_OVERRIDE= ${WRKSRC}/config/ltconfig
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-user=${AMANDA_USER} \
--with-group=${AMANDA_GROUP} \
--with-owner=root \
--with-mmap --with-amandahosts \
--with-includes=${PREFIX}/include \
--with-libraries=${PREFIX}/lib \
--localstatedir=${AMANDA_VAR} \
--with-gnutar-listdir=${AMANDA_VAR}/gnutar-lists \
--with-dump-honor-nodump
|