0fb751412e
* Version 1.0.18: - A new, nice-looking PDF version of the documentation is now available from http://www.pureftpd.org/readme.pdf . Contributed by Torgny Wernersson. - The beast now compiles and links against MySQL 4.1.x, but passwords must not be hashed with MySQL-specific hashing function. - Buglets were fixed in the documentation. - Two new translations were added : hungarian and catalan. Contributed by Bánhalmi Csaba and Contributed by Oriol Magrané. - The server now uses distinct IPv4 and IPv6 to listen to both protocols on all operating systems. A new switch, -6, forces the server to only listen to IPv6. - W3C and CLF alternative log formats are now more standard conformant. - Pure-FTPd can now produce WU-FTPd (xferlog) compatible log files. - Support for Rendezvous was added on MacOS X. - Support for Apple / GNUStep plist data output was added to pure-ftpwho. - UTF-8 characters are now supported in file names. A new switch, --without-unicode, can be used to filter out non-latin characters.
62 lines
1.9 KiB
Makefile
62 lines
1.9 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2004/03/07 11:42:10 recht Exp $
|
|
|
|
DISTNAME= pure-ftpd-1.0.18
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.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/}
|
|
|
|
MAINTAINER= dawszy@arhea.net
|
|
HOMEPAGE= http://www.pureftpd.org/
|
|
COMMENT= FTP daemon with optional SQL support
|
|
|
|
USE_BUILDLINK3= yes
|
|
USE_PKGINSTALL= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS+= --with-everything \
|
|
--with-privsep \
|
|
--sysconfdir=${PKG_SYSCONFDIR}
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if !empty(PURE_FTPD_USE_MYSQL:M[Yy][Ee][Ss])
|
|
. include "../../databases/mysql-client/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-mysql
|
|
CPPFLAGS+= -I${BUILDLINK_PREFIX.mysql-client}/include/mysql
|
|
BUILD_DEFS+= PURE_FTPD_USE_MYSQL
|
|
.endif
|
|
|
|
.if !empty(PURE_FTPD_USE_PGSQL:M[Yy][Ee][Ss])
|
|
. include "../../databases/postgresql-lib/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-pgsql
|
|
BUILD_DEFS+= PURE_FTPD_USE_PGSQL
|
|
.endif
|
|
|
|
.if !empty(PURE_FTPD_USE_TLS:M[Yy][Ee][Ss])
|
|
. include "../../security/openssl/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-tls
|
|
BUILD_DEFS+= PURE_FTPD_USE_TLS
|
|
.endif
|
|
|
|
.if !empty(PURE_FTPD_USE_VIRTUAL_CHROOT:M[Yy][Ee][Ss])
|
|
CONFIGURE_ARGS+= --with-virtualchroot
|
|
BUILD_DEFS+= PURE_FTPD_USE_VIRTUAL_CHROOT
|
|
.endif
|
|
|
|
RCD_SCRIPTS= pure_ftpd
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/pure-ftpd
|
|
cd ${WRKSRC} && \
|
|
${INSTALL_DATA} README README.Authentication-Modules \
|
|
README.Configuration-File README.Contrib \
|
|
README.TLS README.Virtual-Users \
|
|
${PREFIX}/share/doc/pure-ftpd
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|