diff options
author | kevlo <kevlo@FreeBSD.org> | 2001-09-17 00:18:47 +0800 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2001-09-17 00:18:47 +0800 |
commit | 7e222c2efce0cc59ddb680390c0110e475031291 (patch) | |
tree | 0a1e40834a6b2b3df6e178da9ec73ecaf1db62bc /ftp | |
parent | 627b874c36823eafb29b7902cf5d7cbba90875a5 (diff) | |
download | freebsd-ports-gnome-7e222c2efce0cc59ddb680390c0110e475031291.tar.gz freebsd-ports-gnome-7e222c2efce0cc59ddb680390c0110e475031291.tar.zst freebsd-ports-gnome-7e222c2efce0cc59ddb680390c0110e475031291.zip |
Initial import of twoftpd-1.13.
Twoftpd is an FTP server that strives to be secure, simple, and efficient.
None of the commands can cause execution of other programs, and the normal
model of execution does a chroot to the logged in user's directory
immediately after authentication.
PR: 30565
Submitted by: Gea-Suan Lin <gslin@infomath.math.nctu.edu.tw>
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/Makefile | 1 | ||||
-rw-r--r-- | ftp/twoftpd/Makefile | 22 | ||||
-rw-r--r-- | ftp/twoftpd/distinfo | 1 | ||||
-rw-r--r-- | ftp/twoftpd/pkg-comment | 1 | ||||
-rw-r--r-- | ftp/twoftpd/pkg-descr | 12 | ||||
-rw-r--r-- | ftp/twoftpd/pkg-plist | 5 |
6 files changed, 42 insertions, 0 deletions
diff --git a/ftp/Makefile b/ftp/Makefile index 08931bb2aabf..b77389681bec 100644 --- a/ftp/Makefile +++ b/ftp/Makefile @@ -52,6 +52,7 @@ SUBDIR += ruby-curl SUBDIR += sftp SUBDIR += spegla + SUBDIR += twoftpd SUBDIR += vcheck SUBDIR += vsftpd SUBDIR += wget diff --git a/ftp/twoftpd/Makefile b/ftp/twoftpd/Makefile new file mode 100644 index 000000000000..1d013ec85457 --- /dev/null +++ b/ftp/twoftpd/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: twoftpd +# Date created: 14 September 2001 +# Whom: Gea-Suan Lin (gslin@ccca.nctu.edu.tw) +# +# $FreeBSD$ +# + +PORTNAME= twoftpd +PORTVERSION= 1.13 +CATEGORIES= ftp +MASTER_SITES= http://untroubled.org/twoftpd/ + +MAINTAINER= gslin@ccca.nctu.edu.tw + +BIN= twoftpd-anon twoftpd-anon-conf twoftpd-auth twoftpd-conf twoftpd-xfer + +do-install: +.for FILE in ${BIN} + @${INSTALL_PROGRAM} ${WRKSRC}/${FILE} ${PREFIX}/sbin +.endfor + +.include <bsd.port.mk> diff --git a/ftp/twoftpd/distinfo b/ftp/twoftpd/distinfo new file mode 100644 index 000000000000..ff3f878c9f2d --- /dev/null +++ b/ftp/twoftpd/distinfo @@ -0,0 +1 @@ +MD5 (twoftpd-1.13.tar.gz) = 6f1ce251c1b996478ade79bc81f3deb4 diff --git a/ftp/twoftpd/pkg-comment b/ftp/twoftpd/pkg-comment new file mode 100644 index 000000000000..2be43c493844 --- /dev/null +++ b/ftp/twoftpd/pkg-comment @@ -0,0 +1 @@ +A simple, secure, efficient FTP server diff --git a/ftp/twoftpd/pkg-descr b/ftp/twoftpd/pkg-descr new file mode 100644 index 000000000000..a07f82891bd4 --- /dev/null +++ b/ftp/twoftpd/pkg-descr @@ -0,0 +1,12 @@ +Twoftpd is an FTP server that strives to be secure, simple, and efficient. +None of the commands can cause execution of other programs, and the normal +model of execution does a chroot to the logged in user's directory +immediately after authentication. The name "twoftpd" comes from +the fact that there are two parts to the server: an authenticating front +end, which contains no file or data transfer code, and one of two back ends, +which contain all the data transfer code. + +WWW: http://untroubled.org/twoftpd/ + +- Gea-Suan Lin + gslin@ccca.nctu.edu.tw diff --git a/ftp/twoftpd/pkg-plist b/ftp/twoftpd/pkg-plist new file mode 100644 index 000000000000..f31d866abbe9 --- /dev/null +++ b/ftp/twoftpd/pkg-plist @@ -0,0 +1,5 @@ +sbin/twoftpd-anon +sbin/twoftpd-anon-conf +sbin/twoftpd-auth +sbin/twoftpd-conf +sbin/twoftpd-xfer |