diff options
author | Parag Mehta <pm@gentoo.org> | 2001-08-21 09:20:57 +0000 |
---|---|---|
committer | Parag Mehta <pm@gentoo.org> | 2001-08-21 09:20:57 +0000 |
commit | 2d1b3f2e08956b532c2937f859dd5b5daab88d25 (patch) | |
tree | 94ee70c91fe1d211b391f4f521e97dfd7bf6c707 /net-ftp | |
parent | digests (diff) | |
download | historical-2d1b3f2e08956b532c2937f859dd5b5daab88d25.tar.gz historical-2d1b3f2e08956b532c2937f859dd5b5daab88d25.tar.bz2 historical-2d1b3f2e08956b532c2937f859dd5b5daab88d25.zip |
a cosmetic fix with ratios has been made. A new directive to allow resuming and uploading files, but not deleting them, and a workaround for broken clients thatdon't properly end up their command lines were also added. also mysql support and ldap supoprt ebuilds are coming up pretty soon where in u can authentcate users using mysql or ldap.
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/pure-ftpd/files/digest-pure-ftpd-0.99.1a | 1 | ||||
-rw-r--r-- | net-ftp/pure-ftpd/files/digest-pure-ftpd-0.99b | 1 | ||||
-rw-r--r-- | net-ftp/pure-ftpd/files/pftpd.inetd | 2 | ||||
-rw-r--r-- | net-ftp/pure-ftpd/pure-ftpd-0.99.1a.ebuild (renamed from net-ftp/pure-ftpd/pure-ftpd-0.99b.ebuild) | 8 |
4 files changed, 7 insertions, 5 deletions
diff --git a/net-ftp/pure-ftpd/files/digest-pure-ftpd-0.99.1a b/net-ftp/pure-ftpd/files/digest-pure-ftpd-0.99.1a new file mode 100644 index 000000000000..0bc35f201626 --- /dev/null +++ b/net-ftp/pure-ftpd/files/digest-pure-ftpd-0.99.1a @@ -0,0 +1 @@ +MD5 62b6657fe63c1bff86e3db3316df6a85 pure-ftpd-0.99.1a.tar.gz diff --git a/net-ftp/pure-ftpd/files/digest-pure-ftpd-0.99b b/net-ftp/pure-ftpd/files/digest-pure-ftpd-0.99b deleted file mode 100644 index ba87fe839f52..000000000000 --- a/net-ftp/pure-ftpd/files/digest-pure-ftpd-0.99b +++ /dev/null @@ -1 +0,0 @@ -MD5 5b4929cdc35f1b6eff353363ad495adc pure-ftpd-0.99b.tar.gz diff --git a/net-ftp/pure-ftpd/files/pftpd.inetd b/net-ftp/pure-ftpd/files/pftpd.inetd index 4ef16a8e7b1b..67e6e2efd86a 100644 --- a/net-ftp/pure-ftpd/files/pftpd.inetd +++ b/net-ftp/pure-ftpd/files/pftpd.inetd @@ -1,6 +1,6 @@ # ---------------- # Pure-FTPd Server # ---------------- -ftp stream tcp nowait root /usr/sbin/pure-ftpd pure-ftpd -4 -B -b -N -w -W -O clf:/var/log/pureftpd.log +ftp stream tcp nowait root /usr/sbin/pure-ftpd pure-ftpd -4 -B -b -N -w -W -O stats:/var/log/pureftpd.log diff --git a/net-ftp/pure-ftpd/pure-ftpd-0.99b.ebuild b/net-ftp/pure-ftpd/pure-ftpd-0.99.1a.ebuild index 0ee6b82a83de..214f9e5bd597 100644 --- a/net-ftp/pure-ftpd/pure-ftpd-0.99b.ebuild +++ b/net-ftp/pure-ftpd/pure-ftpd-0.99.1a.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Parag Mehta <pm@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-0.99b.ebuild,v 1.1 2001/08/14 16:22:46 pm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-0.99.1a.ebuild,v 1.1 2001/08/21 09:20:57 pm Exp $ -A=pure-ftpd-0.99b.tar.gz +A=pure-ftpd-0.99.1a.tar.gz S=${WORKDIR}/${P} DESCRIPTION="A Fast Production Quality FTP Server - Bug fixes backported from 0.99 . No new feature. Use this version on production servers." SRC_URI="http://prdownloads.sourceforge.net/pureftpd/${A}" @@ -18,7 +18,7 @@ src_compile() { try ./configure --prefix=/usr --with-throttling --with-virtualhosts \ --with-ratios --with-largefile --with-cookie --with-welcomemsg \ --with-altlog --with-ftpwho --with-uploadscript --infodir=/usr/share/info \ - --mandir=/usr/share/man --host=${CHOST} + --mandir=/usr/share/man --with-pam try make } @@ -30,9 +30,11 @@ src_install () { dodoc COPYING ChangeLog README README.Configuration-File dodoc README.Contrib README.LDAP README.Netfilter dodir /etc/pure-ftpd + dodir /etc/pam.d dodir /home/ftp dodir /home/ftp/pub dodir /home/ftp/incoming + cp $S/pam/pure-ftpd ${D}/etc/pam.d/ cp $S/configuration-file/*.pl ${D}/usr/sbin/ cp $S/configuration-file/*.py ${D}/usr/sbin/ cp $S/configuration-file/pure-ftpd.conf ${D}/etc/pure-ftpd/pure-ftpd.conf |