summaryrefslogtreecommitdiff
path: root/net/vsftpd/Makefile
diff options
context:
space:
mode:
authorzuntum <zuntum>2001-06-19 11:32:02 +0000
committerzuntum <zuntum>2001-06-19 11:32:02 +0000
commit1e02fc763bf060b5f3954306ad4de764d4033d7b (patch)
treed541aace168d6b1652d61af30da8cffcf0bf6bb0 /net/vsftpd/Makefile
parent24fa351b9dfa38b5a92b85e734918ddc6aacba78 (diff)
downloadpkgsrc-1e02fc763bf060b5f3954306ad4de764d4033d7b.tar.gz
Initial import of vsftpd-0.9.1
vsftpd is an FTP server, or daemon. The "vs" stands for Very Secure. Obviously this is not a guarantee, but a reflection that I have written the entire codebase with security in mind, and carefully designed the program to be resilient to attack. Recent evidence suggests that vsftpd is also extremely fast (and this is before any explicit performance tuning!) In tests against wu-ftpd, vsftpd was always faster, supporting over twice as many users in some tests. Package provided by Jacek Latos <vaneth@krasnik.org> in pkg/13208; minor modifications by me.
Diffstat (limited to 'net/vsftpd/Makefile')
-rw-r--r--net/vsftpd/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/net/vsftpd/Makefile b/net/vsftpd/Makefile
new file mode 100644
index 00000000000..4bbace14ee7
--- /dev/null
+++ b/net/vsftpd/Makefile
@@ -0,0 +1,23 @@
+# $NetBSD: Makefile,v 1.1.1.1 2001/06/19 11:32:02 zuntum Exp $
+#
+
+DISTNAME= vsftpd-0.9.1
+CATEGORIES= net
+MASTER_SITES= ftp://ferret.lmh.ox.ac.uk/pub/linux/
+
+MAINTAINER= vaneth@krasnik.org
+HOMEPAGE= http://ferret.lmh.ox.ac.uk/
+COMMENT= FTP server that aims to be very secure
+
+ALL_TARGET= #
+
+post-install:
+ ${INSTALL_MAN} ${WRKSRC}/vsftpd.8 ${PREFIX}/man/man8
+ ${INSTALL_MAN} ${WRKSRC}/vsftpd.conf.5 ${PREFIX}/man/man5
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/vsftpd
+ ${INSTALL_DATA} ${WRKSRC}/vsftpd.conf ${PREFIX}/share/examples/vsftpd
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/vsftpd
+ ${INSTALL_DATA} ${WRKSRC}/INSTALL ${PREFIX}/share/doc/vsftpd
+ ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/vsftpd
+
+.include "../../mk/bsd.pkg.mk"