summaryrefslogtreecommitdiff
path: root/misc/amanda25-server
diff options
context:
space:
mode:
authorJun Kuriyama <kuriyama@FreeBSD.org>2007-10-13 11:47:41 +0000
committerJun Kuriyama <kuriyama@FreeBSD.org>2007-10-13 11:47:41 +0000
commitd6e28ed1cad0aff4f43bb42bf284c0954489c521 (patch)
treeddc2daeeecc0d559b1f310a2a8d0680732acc7ee /misc/amanda25-server
parent- Add a note "require LDAP" in GPGSM knob for $OPTIONS. This may help (diff)
- Add AESPIPE knob for $OPTIONS.
PR: ports/112073 (but I changed default to off) Submitted by: "Ekkehard 'Ekki' Gehm" <gehm@physik.tu-berlin.de>
Notes
Notes: svn path=/head/; revision=201388
Diffstat (limited to 'misc/amanda25-server')
-rw-r--r--misc/amanda25-server/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/misc/amanda25-server/Makefile b/misc/amanda25-server/Makefile
index 38124cbc07e1..6b6de0f49912 100644
--- a/misc/amanda25-server/Makefile
+++ b/misc/amanda25-server/Makefile
@@ -115,7 +115,8 @@ MAN8= amadmin.8 amaespipe.8 amcheck.8 \
OPTIONS+= PLOT "enable ploting, requires X11 libraries" off\
SAMBA "enable the use of smbclient" off \
- MTX "enable the use of mtx changer scripts" off
+ MTX "enable the use of mtx changer scripts" off \
+ AESPIPE "enable encryption. Needed by amcrypt" off
.if defined (WITH_PLOT)
BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot
@@ -137,6 +138,10 @@ BUILD_DEPENDS+= mtx:${PORTSDIR}/misc/mtx
RUN_DEPENDS+= mtx:${PORTSDIR}/misc/mtx
.endif
+.if defined (WITH_AESPIPE)
+RUN_DEPENDS+= aespipe:${PORTSDIR}/security/aespipe
+.endif
+
.if defined (AMANDA_TAPE)
CONFIGURE_ARGS+= --with-tape-device=${AMANDA_TAPE}
.endif