svn commit: r411965 - head/devel/arcanist

Michael Gmelin grembo at FreeBSD.org
Sat Mar 26 20:40:12 UTC 2016


Author: grembo
Date: Sat Mar 26 20:40:11 2016
New Revision: 411965
URL: https://svnweb.freebsd.org/changeset/ports/411965

Log:
  Add optional dependency on mbstring for encodings support
  
  This is enabled by default to allow FreeBSD developers to
  work with localized FreeBSD documenentation.
  
  PR:		208227
  Submitted by:	amdmi3
  Approved by:	mentors (implicit)

Modified:
  head/devel/arcanist/Makefile

Modified: head/devel/arcanist/Makefile
==============================================================================
--- head/devel/arcanist/Makefile	Sat Mar 26 20:23:32 2016	(r411964)
+++ head/devel/arcanist/Makefile	Sat Mar 26 20:40:11 2016	(r411965)
@@ -2,6 +2,7 @@
 
 PORTNAME=	arcanist
 PORTVERSION=	20151220
+PORTREVISION=	1
 CATEGORIES=	devel
 PKGNAMEPREFIX=	php5-
 
@@ -21,6 +22,11 @@ NO_BUILD=	yes
 GH_ACCOUNT=	phacility
 GH_TAGNAME=	8762e3f
 
+OPTIONS_DEFINE=	ENCODINGS
+OPTIONS_DEFAULT=ENCODINGS
+ENCODINGS_DESC=	Support for encodings other than utf-8
+ENCODINGS_USE=	PHP=mbstring
+
 do-install:
 	@${MKDIR} ${STAGEDIR}${PREFIX}/${PHP_DESTDIR}
 	cd ${WRKSRC} ; ${PAX} -rw * ${STAGEDIR}${PREFIX}/${PHP_DESTDIR}


More information about the svn-ports-head mailing list