svn commit: r455592 - head/lang/php72

Torsten Zuehlsdorff tz at FreeBSD.org
Tue Dec 5 17:00:50 UTC 2017


Author: tz
Date: Tue Dec  5 17:00:48 2017
New Revision: 455592
URL: https://svnweb.freebsd.org/changeset/ports/455592

Log:
  lang/php72: Add support for libargon2
  
  PHP now provides support for argon-hashes. Add this support
  to the port.
  
  Reported by: Petr Hejl <petr.hejl at freedev.cz>

Modified:
  head/lang/php72/Makefile

Modified: head/lang/php72/Makefile
==============================================================================
--- head/lang/php72/Makefile	Tue Dec  5 16:44:09 2017	(r455591)
+++ head/lang/php72/Makefile	Tue Dec  5 17:00:48 2017	(r455592)
@@ -3,7 +3,7 @@
 
 PORTNAME=	php72
 DISTVERSION=	7.2.0RC6
-PORTREVISION?=	2
+PORTREVISION?=	3
 CATEGORIES?=	lang devel www
 MASTER_SITES=	https://downloads.php.net/~pollita/
 DISTNAME=	php-${DISTVERSION}
@@ -23,7 +23,8 @@ USE_AUTOTOOLS=	autoconf
 #USES+=		autoreconf gmake
 #GNU_CONFIGURE=	yes
 
-LIB_DEPENDS=	libpcre.so:devel/pcre
+LIB_DEPENDS=	libpcre.so:devel/pcre \
+		libargon2.so:security/libargon2
 
 CONFIGURE_ARGS+=--with-layout=GNU \
 		--localstatedir=/var \
@@ -33,6 +34,7 @@ CONFIGURE_ARGS+=--with-layout=GNU \
 		--enable-mysqlnd \
 		--with-libxml-dir=${LOCALBASE} \
 		--with-pcre-regex=${LOCALBASE} \
+		--with-password-argon2=${LOCALBASE} \
 		--program-prefix=""
 
 USE_GNOME=	libxml2


More information about the svn-ports-head mailing list