diff options
author | Masafumi Max NAKANE <max@FreeBSD.org> | 2001-10-28 00:10:09 +0000 |
---|---|---|
committer | Masafumi Max NAKANE <max@FreeBSD.org> | 2001-10-28 00:10:09 +0000 |
commit | d59e4fcbc434309b3efb231d35907be7f85d76d4 (patch) | |
tree | f610a34350a244537aff2bb51405605c8e18e06a /net/delegate/Makefile | |
parent | 42fff2c2741774e091cec9389e684a0d5c955789 (diff) | |
download | ports-d59e4fcbc434309b3efb231d35907be7f85d76d4.tar.gz ports-d59e4fcbc434309b3efb231d35907be7f85d76d4.zip |
Upgrade to 7.5.4.
While at it, change the pre-fetch to display a note suggesting
unsetenv'ing FTP_PASSIVE_MODE if set, as the master site seems to have
problem w/ passive ftp.
Notes
Notes:
svn path=/head/; revision=49275
Diffstat (limited to 'net/delegate/Makefile')
-rw-r--r-- | net/delegate/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/net/delegate/Makefile b/net/delegate/Makefile index 9208b6bf6261..fb20cce3ea47 100644 --- a/net/delegate/Makefile +++ b/net/delegate/Makefile @@ -6,7 +6,7 @@ # PORTNAME= delegate -PORTVERSION= 7.3.4 +PORTVERSION= 7.5.4 CATEGORIES= net www MASTER_SITES= ftp://www.delegate.org/pub/DeleGate/ \ ftp://ftp.etl.go.jp/pub/DeleGate/ @@ -41,6 +41,11 @@ pre-fetch: @${ECHO} "* See FreeBSD security advisory 00:04 for more information. *" @${ECHO} "*********************************************************************" .endif +.if defined(FTP_PASSIVE_MODE) && ${FTP_PASSIVE_MODE}=="YES" + @${ECHO} "Note: If you have trouble retrieving the distfile, try" + @${ECHO} " \"unsetenv FTP_PASSIVE_MODE\" before running make." +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/delegated ${PREFIX}/sbin @${MKDIR} ${PREFIX}/share/examples/delegate |