summaryrefslogtreecommitdiff
path: root/misc/amanda-server
diff options
context:
space:
mode:
authorJames E. Housley <jeh@FreeBSD.org>2002-09-17 11:45:59 +0000
committerJames E. Housley <jeh@FreeBSD.org>2002-09-17 11:45:59 +0000
commit8da881d9dcd2bcf0391bf64bfdcbaecb1500e0a5 (patch)
treee01718e315d77ef6c3e93ffc331fa26a9f35b00d /misc/amanda-server
parentadd xmlada 0.7.1 (diff)
Currently the gnutar-listdir is defaulting to
/usr/local/var/amanda/gnutar-listdir, which is ugly and just plain wrong! This allows the user to select it via AMANDA_GNUTAR_LISTDIR at compile time. There is no PORTREVISION bump, because there is no change unless this is specified. Submitted by: Josef Karthauser <joe@FreeBSD.org>
Notes
Notes: svn path=/head/; revision=66499
Diffstat (limited to 'misc/amanda-server')
-rw-r--r--misc/amanda-server/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/misc/amanda-server/Makefile b/misc/amanda-server/Makefile
index 3b07f3a14120..2b0852c3b031 100644
--- a/misc/amanda-server/Makefile
+++ b/misc/amanda-server/Makefile
@@ -119,6 +119,9 @@ pre-fetch:
@${ECHO} " The default is `uname -n`"
@${ECHO} " AMANDA_CONFIG=config to specify the default configuation"
@${ECHO} " The default is user"
+ @${ECHO} " AMANDA_GNUTAR_LISTDIR=dir to specify the directory that"
+ @${ECHO} " the gnutar index files should live in"
+ @${ECHO} " The default is /var/amanda/gnutar-lists"
@${ECHO} ""
CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/amanda \
@@ -152,6 +155,10 @@ CONFIGURE_ARGS+= --with-tape-server=${AMANDA_SERVER}
CONFIGURE_ARGS+= --with-config=${AMANDA_CONFIG}
.endif
+.if defined (AMANDA_GNUTAR_LISTDIR)
+CONFIGURE_ARGS+= --with-gnutar-listdir=${AMANDA_GNUTAR_LISTDIR}
+.endif
+
.endif
.include <bsd.port.post.mk>