diff options
author | agc <agc@pkgsrc.org> | 1999-10-28 09:46:33 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1999-10-28 09:46:33 +0000 |
commit | fe7a68973aea64c31a8a6c76f8ccc9ae7d0068f9 (patch) | |
tree | 5cb1548932da48b3bcfe0996ad1574dc3d926a16 /net/lukemftp/Makefile | |
parent | 445eac767cf69eb8a1cefd63e176ca896d7f5150 (diff) | |
download | pkgsrc-fe7a68973aea64c31a8a6c76f8ccc9ae7d0068f9.tar.gz |
Import Luke Mewburn's ftp client into the NetBSD packages collection.
This is the NetBSD-current ftp(1) client.
Diffstat (limited to 'net/lukemftp/Makefile')
-rw-r--r-- | net/lukemftp/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/net/lukemftp/Makefile b/net/lukemftp/Makefile new file mode 100644 index 00000000000..fd6445cfc72 --- /dev/null +++ b/net/lukemftp/Makefile @@ -0,0 +1,29 @@ +# $NetBSD: Makefile,v 1.1.1.1 1999/10/28 09:46:33 agc Exp $ +# + +DISTNAME= lukemftp-1.0 +CATEGORIES= net +MASTER_SITES= ftp://ftp.netbsd.org/pub/NetBSD/misc/lukemftp/ + +MAINTAINER= lukem@netbsd.org + +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 +DEPENDS+= socks4-2.2:../../net/socks4 +CONFIGURE_ARGS+= --with-socks4 +.else +DEPENDS+= socks5-1.0.2:../../net/socks5 +CONFIGURE_ARGS+= --with-socks5 +.endif +.endif + +.if ${OPSYS} == "SunOS" +MAKE_ENV+= CPPFLAGS="" +.endif + +.include "../../mk/bsd.pkg.mk" |