From owner-svn-ports-all@freebsd.org Sat Jul 15 19:09:16 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 8E692B79662; Sat, 15 Jul 2017 19:09:16 +0000 (UTC) (envelope-from sunpoet@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 562727FBF6; Sat, 15 Jul 2017 19:09:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6FJ9Fnb006910; Sat, 15 Jul 2017 19:09:15 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6FJ9F3u006909; Sat, 15 Jul 2017 19:09:15 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201707151909.v6FJ9F3u006909@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Jul 2017 19:09:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r445930 - head/converters/pecl-igbinary X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/converters/pecl-igbinary X-SVN-Commit-Revision: 445930 X-SVN-Commit-Repository: ports 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: Sat, 15 Jul 2017 19:09:16 -0000 Author: sunpoet Date: Sat Jul 15 19:09:15 2017 New Revision: 445930 URL: https://svnweb.freebsd.org/changeset/ports/445930 Log: Simplify post-patch: - Silence patch messages Modified: head/converters/pecl-igbinary/Makefile Modified: head/converters/pecl-igbinary/Makefile ============================================================================== --- head/converters/pecl-igbinary/Makefile Sat Jul 15 19:09:09 2017 (r445929) +++ head/converters/pecl-igbinary/Makefile Sat Jul 15 19:09:15 2017 (r445930) @@ -13,15 +13,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= php:pecl -.include - post-patch: -.if ${PHP_VER} >= 70 - ${CP} ${WRKSRC}/src/php7/igbinary.h ${WRKSRC}/igbinary.h - ${CP} ${WRKSRC}/src/php7/php_igbinary.h ${WRKSRC}/php_igbinary.h -.else - ${CP} ${WRKSRC}/src/php5/igbinary.h ${WRKSRC}/igbinary.h - ${CP} ${WRKSRC}/src/php5/php_igbinary.h ${WRKSRC}/php_igbinary.h -.endif + @${CP} ${WRKSRC}/src/php${PHP_VER:C|.$||}/igbinary.h ${WRKSRC}/igbinary.h + @${CP} ${WRKSRC}/src/php${PHP_VER:C|.$||}/php_igbinary.h ${WRKSRC}/php_igbinary.h -.include +.include