svn commit: r510880 - head/ftp/pure-ftpd
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Mon Sep 2 22:44:41 UTC 2019
Author: sunpoet
Date: Mon Sep 2 22:44:40 2019
New Revision: 510880
URL: https://svnweb.freebsd.org/changeset/ports/510880
Log:
Remove UTF-8 option and iconv stuff
- Bump PORTREVISION for package change
RFC 2640 support has been removed from free version since 1.0.48.
PR: 240264
Reported by: Linus Sundqvist <linus.sundqvist at loopia.se>
Modified:
head/ftp/pure-ftpd/Makefile
Modified: head/ftp/pure-ftpd/Makefile
==============================================================================
--- head/ftp/pure-ftpd/Makefile Mon Sep 2 22:44:35 2019 (r510879)
+++ head/ftp/pure-ftpd/Makefile Mon Sep 2 22:44:40 2019 (r510880)
@@ -3,6 +3,7 @@
PORTNAME= pure-ftpd
PORTVERSION= 1.0.49
+PORTREVISION= 1
CATEGORIES= ftp ipv6
MASTER_SITES= https://github.com/jedisct1/pure-ftpd/releases/download/${PORTVERSION}/ \
https://download.pureftpd.org/pub/pure-ftpd/releases/ \
@@ -33,8 +34,8 @@ LANGUAGE?= english
OPTIONS_DEFINE= ANONDELETE ANONRENAME ANONRESUME DOCS EXAMPLES LARGEFILE LDAP \
MYSQL PAM PERUSERLIMITS PGSQL PRIVSEP SCRYPT SENDFILE \
- THROTTLING TLS UPLOADSCRIPT UTF8 VIRTUALCHROOT
-OPTIONS_DEFAULT=PAM PRIVSEP SENDFILE SCRYPT TLS UTF8 VIRTUALCHROOT
+ THROTTLING TLS UPLOADSCRIPT VIRTUALCHROOT
+OPTIONS_DEFAULT=PAM PRIVSEP SENDFILE SCRYPT TLS VIRTUALCHROOT
ANONDELETE_DESC= Allow anonymous user to delete files
ANONRENAME_DESC= Allow anonymous user to rename files
ANONRESUME_DESC= Allow anonymous user to resume file upload
@@ -49,7 +50,6 @@ SCRYPT_DESC= Hash passwords in PureDB with scrypt
SENDFILE_DESC= Sendfile syscall
THROTTLING_DESC= Bandwidth throttling
UPLOADSCRIPT_DESC= Uploadscript daemon support
-UTF8_DESC= UTF-8 filenames
VIRTUALCHROOT_DESC= Follow symlinks outside a chroot jail
ANONDELETE_CPPFLAGS= -DANON_CAN_DELETE
@@ -73,17 +73,8 @@ TLS_CPPFLAGS= -I${OPENSSLINC}
TLS_LDFLAGS= -L${OPENSSLLIB}
TLS_USES= ssl
UPLOADSCRIPT_CONFIGURE_WITH= uploadscript
-UTF8_CONFIGURE_WITH= rfc2640
-UTF8_USES= iconv
VIRTUALCHROOT_CONFIGURE_WITH= virtualchroot
-.include <bsd.port.pre.mk>
-
-.if empty(ICONV_LIB)
-CONFIGURE_ARGS+=ac_cv_lib_iconv_iconv_open=no \
- ac_cv_lib_iconv_libiconv_open=no
-.endif
-
pre-fetch:
@${ECHO_MSG} "You can use the following additional options:"
@${ECHO_MSG} ""
@@ -109,4 +100,4 @@ post-install-EXAMPLES-on:
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/pam.d/
${INSTALL_DATA} ${FILESDIR}/pam.conf.5 ${STAGEDIR}${EXAMPLESDIR}/pam.d/pure-ftpd
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
More information about the svn-ports-head
mailing list