diff options
author | jmmv <jmmv> | 2003-06-02 13:13:15 +0000 |
---|---|---|
committer | jmmv <jmmv> | 2003-06-02 13:13:15 +0000 |
commit | 7810df12628dc233a143675522d766be998be575 (patch) | |
tree | d47109ccb3febb07c63300ea25e8eb55ff96b409 /net/bftpd/patches | |
parent | 878eb4643c78d5b15330cba3f3f73e465fb80c49 (diff) | |
download | pkgsrc-7810df12628dc233a143675522d766be998be575.tar.gz |
Initial import of bftpd, version 1.0.24:
bftpd is a FTP server that tries to be very configurable while being fast and
small. Its features 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 extra files (sh, ls..) in a chroot environment.
* Logging to wtmp and to logfile or syslog.
* PAM and passwd/shadow support.
* Support for SITE CHOWN/CHMOD.
Package provided by virtus@wanadoo.nl in pkgsrc-wip with several changes by me.
Diffstat (limited to 'net/bftpd/patches')
-rw-r--r-- | net/bftpd/patches/patch-aa | 22 | ||||
-rw-r--r-- | net/bftpd/patches/patch-ab | 9 |
2 files changed, 31 insertions, 0 deletions
diff --git a/net/bftpd/patches/patch-aa b/net/bftpd/patches/patch-aa new file mode 100644 index 00000000000..20bda865809 --- /dev/null +++ b/net/bftpd/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.1.1.1 2003/06/02 13:13:15 jmmv Exp $ + +--- Makefile.in.orig 2003-06-02 14:23:34.000000000 +0200 ++++ Makefile.in +@@ -4,6 +4,7 @@ INSTALL=@INSTALL@ + CFLAGS=@CFLAGS@ @DEFS@ -Wall -I. -DVERSION=\"$(VERSION)\" @DEBUG@ + LIBS=@LIBS@ + prefix=@prefix@ ++datadir=@datadir@ + mandir=@mandir@ + sbindir=@sbindir@ + DESTDIR= +@@ -28,8 +29,7 @@ $(OBJS): $(HEADERS) Makefile + install: all + $(INSTALL) -g 0 -m 700 -o 0 bftpd $(DESTDIR)/$(prefix)/sbin + $(INSTALL) -g 0 -m 644 -o 0 bftpd.8 $(DESTDIR)/$(mandir)/man8 +- [ -f $(DESTDIR)/etc/bftpd.conf ] || \ +- $(INSTALL) -g 0 -m 600 -o 0 bftpd.conf $(DESTDIR)/etc ++ $(INSTALL) -g 0 -m 600 -o 0 bftpd.conf $(DESTDIR)/$(datadir)/examples/bftpd + touch /var/log/bftpd.log + chmod 644 /var/log/bftpd.log + mkdir -p /var/run/bftpd diff --git a/net/bftpd/patches/patch-ab b/net/bftpd/patches/patch-ab new file mode 100644 index 00000000000..7e09d7c60fa --- /dev/null +++ b/net/bftpd/patches/patch-ab @@ -0,0 +1,9 @@ +$NetBSD: patch-ab,v 1.1.1.1 2003/06/02 13:13:15 jmmv Exp $ + +--- mypaths.h.orig 2003-05-09 23:47:48.000000000 +0200 ++++ mypaths.h +@@ -1,2 +1,4 @@ ++#ifndef PATH_BFTPD_CONF + #define PATH_BFTPD_CONF "/etc/bftpd.conf" ++#endif + #define PATH_STATUSLOG "/dev/null" |