diff options
author | obrien <obrien@FreeBSD.org> | 2008-03-19 02:29:18 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2008-03-19 02:29:18 +0800 |
commit | a6c26ef917bae85720eaef489d049baf8d896c47 (patch) | |
tree | 87b679fffe178ac33d784ab6e0f1fb110aebaf27 /ftp/ncftp3 | |
parent | 71d9ecc275ea9cdc6f48ed8285e452068f4562d6 (diff) | |
download | freebsd-ports-gnome-a6c26ef917bae85720eaef489d049baf8d896c47.tar.gz freebsd-ports-gnome-a6c26ef917bae85720eaef489d049baf8d896c47.tar.zst freebsd-ports-gnome-a6c26ef917bae85720eaef489d049baf8d896c47.zip |
Add a WITHOUT_NCFTP_IPV6 knob and respect WITHOUT_IPV6. Otherwise I get:
Could not connect to ftp.vim.org: No route to host.
ncftpls: cannot open ftp.vim.org: could not connect to remote host.
Diffstat (limited to 'ftp/ncftp3')
-rw-r--r-- | ftp/ncftp3/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ftp/ncftp3/Makefile b/ftp/ncftp3/Makefile index 31ce5760f628..8386763c9eaa 100644 --- a/ftp/ncftp3/Makefile +++ b/ftp/ncftp3/Makefile @@ -13,9 +13,11 @@ CATEGORIES= ftp ipv6 MASTER_SITES= ftp://ftp.ncftp.com/ncftp/ DISTNAME= ncftp-${PORTVERSION}-src +.if !defined(WITHOUT_NCFTP_IPV6) && !defined(WITHOUT_IPV6) PATCH_SITES= ftp://ftp.kame.net/pub/kame/misc/ PATCHFILES= ncftp-321-v6-20070822.diff.gz PATCH_DIST_STRIP= -p1 +.endif MAINTAINER= obrien@FreeBSD.org COMMENT= ftp replacement with advanced user interface |