diff options
author | xtraeme <xtraeme> | 2004-02-23 01:32:33 +0000 |
---|---|---|
committer | xtraeme <xtraeme> | 2004-02-23 01:32:33 +0000 |
commit | a3a527561acdd76915f7011a9cf2984d0e38a3a1 (patch) | |
tree | c5357556d335566acc5fb7181d26cac34330c024 /net/jftpgw/Makefile | |
parent | 6e11be6fb1c0b806ca082c8720b94bb424963482 (diff) | |
download | pkgsrc-a3a527561acdd76915f7011a9cf2984d0e38a3a1.tar.gz |
Initial import of jftpgw-0.13.4, packaged by David Ferlier in PR
pkg/24414, with minor changes by me.
jftpgw is an FTP proxy/gateway that uses the FTP protocol (unlike
those FTP proxies that fetch an FTP file but work as an http proxy).
You can use it to make servers behind a firewall/NAT server
(masquerading server) accessible or to allow users behind such
solutions to transfer files to and from the outside of the LAN.
Diffstat (limited to 'net/jftpgw/Makefile')
-rw-r--r-- | net/jftpgw/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/net/jftpgw/Makefile b/net/jftpgw/Makefile new file mode 100644 index 00000000000..db80cf06472 --- /dev/null +++ b/net/jftpgw/Makefile @@ -0,0 +1,28 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/02/23 01:32:33 xtraeme Exp $ + +DISTNAME= jftpgw-0.13.4 +CATEGORIES= net +MASTER_SITES= http://www.mcknight.de/jftpgw/ + +MAINTAINER= david@netbsd-fr.org +HOMEPAGE= http://www.mcknight.de/jftpgw/ +COMMENT= FTP gateway/proxy + +USE_BUILDLINK3= yes +GNU_CONFIGURE= yes +USE_PKGINSTALL= yes + +CONFIGURE_ARGS+= --with-logpath=/var/log +CONFIGURE_ARGS+= --enable-crypt +CONFIGURE_ARGS+= --enable-sftp + +RCD_SCRIPTS= jftpgw +EGDIR= ${PREFIX}/share/examples/jftpgw +CONF_FILES= ${EGDIR}/jftpgw.conf ${PKG_SYSCONFDIR}/jftpgw.conf + +SUBST_CLASSES+= config +SUBST_STAGE.config= post-build +SUBST_FILES.config= ${WRKSRC}/jftpgw.conf.sample +SUBST_SED.config= -e "s/nobody/root/" + +.include "../../mk/bsd.pkg.mk" |