5d3b535ea7
* Fixed a bug regarding changing uids/gids (Niki Waibel) * Fixed a bug regarding changeroot (Niki Waibel) * Clarified the setting of the umask of the logfile (Niki Waibel) * Fixed a bug in the commonlog logging format (Andrew Zhoglo) * Passing complete encrypted password to crypt, not only salt (Arkadius Nowakowski) * Allowing STOU command (Pawel Worach) * Allowing more errors at the call to accept() that are connection related and don't force us to shut down the server (Reil Brennan) * Added option to close the connection after consequent protocol violations * Fixed compiler warnings with gcc 3 (includes renaming of log() to jlog()) * Updated configure.in to new autoconf/automake versions * "Entering Passive Mode" did not get logged because of "PASS" substring (Yan, Dong) * Changed xferlog-style (Toni) * jftpgw didn't compile on NetBSD 2.0E because IPL_NAT is not known there anymore - added #ifdef (Ray Phillips) * annotated default configuration file
35 lines
1,001 B
Makefile
35 lines
1,001 B
Makefile
# $NetBSD: Makefile,v 1.10 2006/04/10 09:31:01 martti Exp $
|
|
|
|
DISTNAME= jftpgw-0.13.5
|
|
#PKGREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.mcknight.de/jftpgw/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.mcknight.de/jftpgw/
|
|
COMMENT= FTP gateway/proxy
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS+= --with-logpath=${VARBASE}/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+= log
|
|
SUBST_STAGE.log= post-patch
|
|
SUBST_FILES.log= active.c bindport.c cache.c cmds.c config.c \
|
|
ftpread.c fw_auth_cmds.c jftpgw.c log.c log.h \
|
|
login.c openport.c passive.c states.c std_cmds.c \
|
|
util.c
|
|
SUBST_SED.log= -e "s,\([[:space:]]\)\(log(\),\1x\2,"
|
|
|
|
SUBST_CLASSES+= config
|
|
SUBST_STAGE.config= post-build
|
|
SUBST_FILES.config= jftpgw.conf.sample
|
|
SUBST_SED.config= -e "s/nobody/root/"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|