diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2007-10-13 11:47:41 +0000 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2007-10-13 11:47:41 +0000 |
commit | 1c02178027b6c7978ead2e6a5447825f67ff7515 (patch) | |
tree | a7222c7a7dbd5115be0b92b0e3a745a3164cf668 /misc/amanda-server/Makefile | |
parent | 32886c6d7961a97140fce3e195fe433475615ebb (diff) | |
download | FreeBSD-ports-1c02178027b6c7978ead2e6a5447825f67ff7515.zip FreeBSD-ports-1c02178027b6c7978ead2e6a5447825f67ff7515.tar.gz |
- Add AESPIPE knob for $OPTIONS.
PR: ports/112073 (but I changed default to off)
Submitted by: "Ekkehard 'Ekki' Gehm" <gehm@physik.tu-berlin.de>
Diffstat (limited to 'misc/amanda-server/Makefile')
-rw-r--r-- | misc/amanda-server/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/misc/amanda-server/Makefile b/misc/amanda-server/Makefile index 38124cb..6b6de0f 100644 --- a/misc/amanda-server/Makefile +++ b/misc/amanda-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 |