From owner-svn-ports-all@freebsd.org Fri Jun 9 09:44:35 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7DAC6BF0D92; Fri, 9 Jun 2017 09:44:35 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48A34D5B; Fri, 9 Jun 2017 09:44:35 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v599iYXS097369; Fri, 9 Jun 2017 09:44:34 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v599iYKA097367; Fri, 9 Jun 2017 09:44:34 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201706090944.v599iYKA097367@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Fri, 9 Jun 2017 09:44:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442978 - in head: graphics/php71-gd lang/php71 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2017 09:44:35 -0000 Author: tz Date: Fri Jun 9 09:44:33 2017 New Revision: 442978 URL: https://svnweb.freebsd.org/changeset/ports/442978 Log: graphics/php71-gd: remove options T1LIB and VPX, add option WEBP Support for T1LIB and VPX was removed in PHP 7.0 Support for WebP support was added in PHP 7.0 PR: 219837 Submitted by: Dani Modified: head/graphics/php71-gd/Makefile head/lang/php71/Makefile.ext Modified: head/graphics/php71-gd/Makefile ============================================================================== --- head/graphics/php71-gd/Makefile Fri Jun 9 09:43:51 2017 (r442977) +++ head/graphics/php71-gd/Makefile Fri Jun 9 09:44:33 2017 (r442978) @@ -4,6 +4,8 @@ CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php71 +PORTREVISION= 1 + PKGNAMESUFFIX= -gd .include "${MASTERDIR}/Makefile" Modified: head/lang/php71/Makefile.ext ============================================================================== --- head/lang/php71/Makefile.ext Fri Jun 9 09:43:51 2017 (r442977) +++ head/lang/php71/Makefile.ext Fri Jun 9 09:44:33 2017 (r442978) @@ -100,14 +100,13 @@ CONFIGURE_ARGS+=--with-gd \ --with-png-dir=${LOCALBASE} \ --with-zlib-dir=/usr -OPTIONS_DEFINE= T1LIB TRUETYPE JIS X11 VPX -OPTIONS_DEFAULT=T1LIB TRUETYPE X11 +OPTIONS_DEFINE=TRUETYPE JIS WEBP X11 +OPTIONS_DEFAULT=TRUETYPE X11 -T1LIB_DESC= Include T1lib support TRUETYPE_DESC= Enable TrueType string function JIS_DESC= Enable JIS-mapped Japanese font support +WEBP_DESC= Enable WebP image format support X11_DESC= Enable XPM support -VPX_DESC= Enable VP8 codec support PHP_HEADER_DIRS=libgd .endif @@ -505,26 +504,21 @@ USES+= mysql .include .if ${PHP_MODNAME} == "gd" -. if ${PORT_OPTIONS:MT1LIB} -LIB_DEPENDS+= libt1.so:devel/t1lib - -CONFIGURE_ARGS+=--with-t1lib=${LOCALBASE} -. endif . if ${PORT_OPTIONS:MTRUETYPE} CONFIGURE_ARGS+=--enable-gd-native-ttf . endif . if ${PORT_OPTIONS:MJIS} CONFIGURE_ARGS+=--enable-gd-jis-conv . endif +. if ${PORT_OPTIONS:MWEBP} +LIB_DEPENDS+= libwebp.so:graphics/webp + +CONFIGURE_ARGS+=--with-webp-dir=${LOCALBASE} +. endif . if ${PORT_OPTIONS:MX11} USE_XORG= xpm CONFIGURE_ARGS+=--with-xpm-dir=${LOCALBASE} -. endif -. if ${PORT_OPTIONS:MVPX} -LIB_DEPENDS+= libvpx.so:multimedia/libvpx - -CONFIGURE_ARGS+=--with-vpx-dir=${LOCALBASE} . endif .endif