Changes since 1.0.30: - An old-standing bug has been fixed: when a file was renamed and overwrote an existing file, the quota wasn't properly updated. - SITE UTIME now supports the 2-arguments syntax in addition to the 5-arguments syntax. - Support for the MFMT command has been implemented. - A default directory can now be specified when using the LDAP backend. - Support SHA1 password hashing in MySQL and PostgreSQL backends - Support for braces expansion in directory listings has been disabled - Cf. CVE-2011-0418 - The list of allowed ciphers for SSL/TLS connections can now be specified (--tlsciphersuite / -J). - Shell-like escaping is now partially handled when emulating the "ls" command in order to improve compatibility with legacy clients. - Linking issues with MySQL support on Fedora have been solved.
49 lines
1.5 KiB
Makefile
49 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.28 2012/02/07 20:40:39 morr Exp $
|
|
|
|
DISTNAME= pure-ftpd-1.0.35
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.pureftpd.org/pub/pure-ftpd/releases/ \
|
|
http://download.pureftpd.org/pub/pure-ftpd/releases/ \
|
|
ftp://ftp2.fr.pureftpd.org/pub/mirrors/ftp.fr.pureftpd.org/pub/pure-ftpd/releases/ \
|
|
ftp://ftp3.fr.pureftpd.org/pure-ftpd/releases/ \
|
|
ftp://ftp.dk.pureftpd.org/mirrors/pure-ftpd/releases/ \
|
|
ftp://ftp.nl.pureftpd.org/pub/pure-ftpd/releases/ \
|
|
ftp://ftp.fr.pureftpd.org/pub/pure-ftpd/releases/ \
|
|
ftp://ftp.cn.pureftpd.org/pub/pureftpd/pure-ftpd/releases/ \
|
|
${MASTER_SITE_SOURCEFORGE:=pureftpd/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= dawszy@arhea.net
|
|
HOMEPAGE= http://www.pureftpd.org/project/pure-ftpd
|
|
COMMENT= Secure FTP daemon with optional SQL support
|
|
LICENSE= modified-bsd
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-everything
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
|
|
CONFIGURE_ARGS+= --localstatedir=${VARBASE}
|
|
|
|
BUILD_DEFS+= VARBASE
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "Interix"
|
|
CONFIGURE_ARGS+= --without-privsep
|
|
.endif
|
|
|
|
.include "options.mk"
|
|
|
|
RCD_SCRIPTS= pure_ftpd pure_uploadscript
|
|
INSTALLATION_DIRS= share/doc/pure-ftpd
|
|
|
|
post-install:
|
|
cd ${WRKSRC} && \
|
|
${INSTALL_DATA} README README.Authentication-Modules \
|
|
README.Configuration-File README.Contrib \
|
|
README.TLS README.Virtual-Users \
|
|
README.MySQL README.PGSQL README.LDAP \
|
|
${DESTDIR}${PREFIX}/share/doc/pure-ftpd
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|