pure-ftpd supports "--with-largefile" being passed to config, but there is no support in the ebuild Reproducible: Always Steps to Reproduce: 1. grep largefile /usr/portage/net-ftp/pure-ftpd/*ebuild 2. using an ftp client, ls a directory with files > 2GB. Actual Results: 1. grep finds no matches. 2. the large files are not listed and cannot be downloaded. Expected Results: 1. grep should return something like this: /usr/portage/net-ftp/pure-ftpd/pure-ftpd-1.0.16b.ebuild: --with- largefile /usr/portage/net-ftp/pure-ftpd/pure-ftpd-1.0.16c.ebuild: --with- largefile 2. the large files should show and be downloadable. Workaround: Apply the following patch to the ebuild to include large file support: *** pure-ftpd-1.0.16b.ebuild.orig Tue Jan 27 14:49:42 2004 --- pure-ftpd-1.0.16b.ebuild Tue Jan 27 08:43:47 2004 *************** *** 28,35 **** --- 28,36 ---- use postgres && myconf="${myconf} --with-pgsql" use ssl && myconf="${myconf} --with-tls" econf \ + --with-largefile \ --with-altlog --with-extauth \ --with-puredb --with-cookie \ --with-throttling --with-ratios \ --with-quotas --with-ftpwho \
*** This bug has been marked as a duplicate of 11215 ***