From owner-svn-ports-all@FreeBSD.ORG Sun Oct 20 06:55:58 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 878E3352; Sun, 20 Oct 2013 06:55:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7454C291A; Sun, 20 Oct 2013 06:55:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9K6twhA013767; Sun, 20 Oct 2013 06:55:58 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9K6twWs013766; Sun, 20 Oct 2013 06:55:58 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201310200655.r9K6twWs013766@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 20 Oct 2013 06:55:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r330984 - head/www/pecl-APC 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.14 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: Sun, 20 Oct 2013 06:55:58 -0000 Author: sunpoet Date: Sun Oct 20 06:55:57 2013 New Revision: 330984 URL: http://svnweb.freebsd.org/changeset/ports/330984 Log: - Mark IGNORE with php 5.5.x - Convert to new options helper Modified: head/www/pecl-APC/Makefile Modified: head/www/pecl-APC/Makefile ============================================================================== --- head/www/pecl-APC/Makefile Sun Oct 20 06:31:51 2013 (r330983) +++ head/www/pecl-APC/Makefile Sun Oct 20 06:55:57 2013 (r330984) @@ -23,6 +23,8 @@ SPINLOCKS_DESC= Spinlocks (experimental) CFLAGS+= -I${LOCALBASE}/include CONFIGURE_ARGS= --enable-apc +IGNORE_WITH_PHP=55 +NO_STAGE= yes PHP_MODNAME= ${PORTNAME:L} PKGMESSAGE= ${WRKDIR}/pkg-message SUB_FILES= pkg-message @@ -32,24 +34,12 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-3.1.13 PORTDOCS= CHANGELOG INSTALL NOTICE apc.php -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MFILEHITS} -CONFIGURE_ARGS+=--enable-apc-filehits -.endif +FILEHITS_CONFIGURE_ARGS=--enable-apc-filehits +IPC_CONFIGURE_ARGS= --disable-apc-mmap +SEMAPHORES_CONFIGURE_ARGS= --enable-apc-sem +SPINLOCKS_CONFIGURE_ARGS= --enable-apc-spinlocks -.if ${PORT_OPTIONS:MIPC} -CONFIGURE_ARGS+=--disable-apc-mmap -.endif - -.if ${PORT_OPTIONS:MSEMAPHORES} -CONFIGURE_ARGS+=--enable-apc-sem -.endif - -.if ${PORT_OPTIONS:MSPINLOCKS} -CONFIGURE_ARGS+=--enable-apc-spinlocks -.endif +.include post-install: .if ${PORT_OPTIONS:MDOCS}