- Update to 1.8.4

PR:		ports/112966
Submitted by:	Beech Rintoul <beech@alaskaparadise.com> (maintainer)
This commit is contained in:
Andrew Pantyukhin 2007-05-26 20:01:07 +00:00
parent 4573c14a07
commit 370954b872
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=191930
6 changed files with 43 additions and 38 deletions

View file

@ -6,15 +6,15 @@
#
PORTNAME= bftpd
PORTVERSION= 1.6
PORTVERSION= 1.8.4
CATEGORIES= ftp
MASTER_SITES= SF
MASTER_SITES= CENKES http://freebsd.alaskaparadise.com/source/ \
http://bftpd.sourceforge.net/downloads/testing/
MAINTAINER= beech@alaskaparadise.com
COMMENT= Very configurable FTP server that can do chroot easily
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --enable-pam
PLIST_FILES= sbin/${PORTNAME} etc/${PORTNAME}.conf.sample

View file

@ -1,3 +1,3 @@
MD5 (bftpd-1.6.tar.gz) = 203ebbe285857a4b001d4a9872cffce4
SHA256 (bftpd-1.6.tar.gz) = abbb20380f7ca4606e0e7d7586ad74d457b637839d560502e9547d8e91a2c986
SIZE (bftpd-1.6.tar.gz) = 112303
MD5 (bftpd-1.8.4.tar.gz) = dc97121eda9b93226899ff7c9ea5acf1
SHA256 (bftpd-1.8.4.tar.gz) = 6375124e0f4709795b7fc8f499f70c28fb1c6d7312b3b88cbfc84d8e3712855c
SIZE (bftpd-1.8.4.tar.gz) = 114815

View file

@ -1,12 +0,0 @@
$FreeBSD$
--- login.c.orig Thu Mar 28 10:10:15 2002
+++ login.c Thu Mar 28 10:10:22 2002
@@ -323,7 +323,6 @@
pam_strerror(pamh, retval));
return 1;
}
- pam_fail_delay(pamh, 0);
retval = pam_authenticate(pamh, 0);
if (retval == PAM_SUCCESS)
retval = pam_acct_mgmt(pamh, 0);

View file

@ -0,0 +1,11 @@
--- main.c.orig Sun Apr 8 12:34:59 2007
+++ main.c Thu May 24 19:11:45 2007
@@ -47,6 +47,8 @@
# include <sys/wait.h>
# endif
#endif
+/* add BSD support */
+#include <limits.h>
#include "main.h"
#include "cwd.h"

View file

@ -0,0 +1,11 @@
--- options.c.orig Fri Apr 13 16:19:15 2007
+++ options.c Thu May 24 19:13:39 2007
@@ -3,6 +3,8 @@
#include <stdlib.h>
#include <grp.h>
#include <unistd.h>
+/* add BSD support */
+#include <limits.h>
#include "options.h"
#include "mystring.h"

View file

@ -1,23 +1,18 @@
bftpd is an FTP server for Linux, BSD/OS, FreeBSD, Solaris, DG-UX
and Tru64. It runs either with inetd or standalone.
It tries to be very configurable while being fast and small. You
can make defaults for each configuration option, and then override
these defaults in user-specific structures. Support for
directory-specific options is planned.
The Bftpd file server is designed to be as small and easy to manage as possible,
while providing most of the features you would expect from a file server. On
most home systems, bftpd is ready to work out-of-the-box without requiring any
extra configuration. Production systems can be set up by editing a few lines in
an easy-to-read config file.
Features of bftpd include:
* Easy configuration
* Speed
* Support for most RFC FTP commands
* tar.gz on-the-fly compression/archiving
* Security with chroot without special setup
* No need for files (sh, ls...) in a chroot environment
* Logging to wtmp and to a config file
* PAM support
* Support for SITE CHOWN/CHMOD
* Easy configuration
* Speed
* Support for most RFC FTP commands
* tar.gz on-the-fly compression/archiving
* Security with chroot without special setup
* No need for files (sh, ls...) in a chroot environment
* Logging to wtmp and to a config file
* PAM support
* Support for site chown/chmod
WWW: http://www.bftpd.org/
- Pete
petef@databits.net
WWW: http://bftpd.sourceforge.net/