diff options
author | Jun Kuriyama <kuriyama@FreeBSD.org> | 2007-03-25 11:53:31 +0000 |
---|---|---|
committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 2007-03-25 11:53:31 +0000 |
commit | c656eb4500865c23230d17f95277df4c9305654d (patch) | |
tree | e0ad3ba999171b9c27eaad1fecc1bea3bac9662f /misc/amanda-server/Makefile | |
parent | d6ee2e03dd9ee503fd038c9ac8132bb49938f543 (diff) | |
download | ports-c656eb4500865c23230d17f95277df4c9305654d.tar.gz ports-c656eb4500865c23230d17f95277df4c9305654d.zip |
Notes
Diffstat (limited to 'misc/amanda-server/Makefile')
-rw-r--r-- | misc/amanda-server/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/misc/amanda-server/Makefile b/misc/amanda-server/Makefile index 104ccd6dff3f..89520ce8f8d8 100644 --- a/misc/amanda-server/Makefile +++ b/misc/amanda-server/Makefile @@ -7,7 +7,7 @@ PORTNAME= amanda PORTVERSION= 2.5.1p3 -PORTREVISION?= 1 +PORTREVISION?= 2 PKGNAMESUFFIX?= -server PORTEPOCH= 1 CATEGORIES= misc @@ -56,8 +56,12 @@ CONFIGURE_ARGS+= --with-config=${AMANDA_CONFIG} CONFIGURE_ARGS+= --with-udpportrange=${AMANDA_UDPPORTRANGE} .endif +# AMANDA_PORTRANGE is obsoleted. Use AMANDA_TCPPORTRANGE instead. .if defined (AMANDA_PORTRANGE) -CONFIGURE_ARGS+= --with-portrange=${AMANDA_PORTRANGE} +AMANDA_TCPPORTRANGE= ${AMANDA_PORTRANGE} +.endif +.if defined (AMANDA_TCPPORTRANGE) +CONFIGURE_ARGS+= --with-tcpportrange=${AMANDA_TCPPORTRANGE} .endif .if !defined(WITHOUT_GNUTAR) @@ -84,7 +88,7 @@ pre-fetch: @${ECHO} " The default is operator" @${ECHO} " AMANDA_GROUP=group to specify the default group" @${ECHO} " The default is operator" - @${ECHO} " AMANDA_PORTRANGE=low,high to restrict Amanda to TCP ports" + @${ECHO} " AMANDA_TCPPORTRANGE=low,high to restrict Amanda to TCP ports" @${ECHO} " between low and high when connecting from the server" @${ECHO} " to the client for data, messages, and indexing." @${ECHO} " The default is no restriction on TCP ports." @@ -170,7 +174,7 @@ pre-fetch: @${ECHO} " The default is operator" @${ECHO} " AMANDA_GROUP=group to specify the default group" @${ECHO} " The default is operator" - @${ECHO} " AMANDA_PORTRANGE=low,high to restrict Amanda to TCP ports" + @${ECHO} " AMANDA_TCPPORTRANGE=low,high to restrict Amanda to TCP ports" @${ECHO} " between low and high when connecting from the server" @${ECHO} " to the client for data, messages, and indexing." @${ECHO} " The default is no restriction on TCP ports." |