diff options
author | grant <grant@pkgsrc.org> | 2003-12-18 01:47:07 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-12-18 01:47:07 +0000 |
commit | 9bfcad2b3e14f40a79a0a53e1896dd3efbb983e8 (patch) | |
tree | 472caa4534335ffe2e3efe9cc540773e94fc260a /net | |
parent | e95756cb6e3ea4395872982ca3d26caf1b9d2fa0 (diff) | |
download | pkgsrc-9bfcad2b3e14f40a79a0a53e1896dd3efbb983e8.tar.gz |
indent conditionals, quote some literals, uppercase FTP and a literal.
Diffstat (limited to 'net')
-rw-r--r-- | net/tnftp/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/net/tnftp/Makefile b/net/tnftp/Makefile index 45bbf5d728e..3e10647cae9 100644 --- a/net/tnftp/Makefile +++ b/net/tnftp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2003/08/25 12:24:04 lukem Exp $ +# $NetBSD: Makefile,v 1.3 2003/12/18 01:47:07 grant Exp $ # DISTNAME= tnftp-20030825 @@ -8,24 +8,24 @@ CATEGORIES= net MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/misc/tnftp/ MAINTAINER= lukem@NetBSD.org -COMMENT= The enhanced ftp client in NetBSD +COMMENT= The enhanced FTP client in NetBSD -GNU_CONFIGURE= yes +GNU_CONFIGURE= YES .include "../../mk/bsd.prefs.mk" # Include SOCKS firewall support -.if defined(USE_SOCKS) && (${USE_SOCKS} == 4 || ${USE_SOCKS} == 5) -.if ${USE_SOCKS} == 4 +.if defined(USE_SOCKS) && (${USE_SOCKS} == "4" || ${USE_SOCKS} == "5") + .if ${USE_SOCKS} == "4" DEPENDS+= socks4-2.2:../../net/socks4 CONFIGURE_ARGS+= --with-socks4 -.else +. else DEPENDS+= socks5-1.0.2:../../net/socks5 CONFIGURE_ARGS+= --with-socks5 -.endif +. endif .endif -.if defined(USE_INET6) && ${USE_INET6} == YES +.if defined(USE_INET6) && ${USE_INET6} == "YES" CONFIGURE_ARGS+= --enable-ipv6 .else CONFIGURE_ARGS+= --disable-ipv6 |