diff options
author | pav <pav@FreeBSD.org> | 2008-03-31 23:19:03 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2008-03-31 23:19:03 +0800 |
commit | 5b7f13866ae97d7fd7503002d781e7fce13c4adc (patch) | |
tree | 324faf46341c2740bc2610beb833cc440e5ce20d /misc/amanda25-server | |
parent | ce797ed853937784e5c32bd48a79f0d233b1e7c5 (diff) | |
download | freebsd-ports-gnome-5b7f13866ae97d7fd7503002d781e7fce13c4adc.tar.gz freebsd-ports-gnome-5b7f13866ae97d7fd7503002d781e7fce13c4adc.tar.zst freebsd-ports-gnome-5b7f13866ae97d7fd7503002d781e7fce13c4adc.zip |
- Add SSH option
PR: ports/118039
Submitted by: Ekkehard 'Ekki' Gehm <gehm@physik.tu-berlin.de>
Approved by: maintainer timeout (kuriyama; 4 months)
Diffstat (limited to 'misc/amanda25-server')
-rw-r--r-- | misc/amanda25-server/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/misc/amanda25-server/Makefile b/misc/amanda25-server/Makefile index 6b6de0f49912..33bc49a983d6 100644 --- a/misc/amanda25-server/Makefile +++ b/misc/amanda25-server/Makefile @@ -116,7 +116,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 \ - AESPIPE "enable encryption. Needed by amcrypt" off + AESPIPE "enable encryption. Needed by amcrypt" off \ + SSH "enable ssh-auth" off .if defined (WITH_PLOT) BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot @@ -142,6 +143,10 @@ RUN_DEPENDS+= mtx:${PORTSDIR}/misc/mtx RUN_DEPENDS+= aespipe:${PORTSDIR}/security/aespipe .endif +.if defined (WITH_SSL) +CONFIGURE_ARGS+= --with-ssh-security +.endif + .if defined (AMANDA_TAPE) CONFIGURE_ARGS+= --with-tape-device=${AMANDA_TAPE} .endif |