From owner-svn-ports-head@FreeBSD.ORG Fri Oct 18 13:06:52 2013 Return-Path: Delivered-To: svn-ports-head@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 C4BC4205 for ; Fri, 18 Oct 2013 13:06:52 +0000 (UTC) (envelope-from ohauer@gmx.de) Received: from mout.gmx.net (mout.gmx.net [212.227.17.21]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 58D3D2F46 for ; Fri, 18 Oct 2013 13:06:52 +0000 (UTC) Received: from [10.6.25.100] ([213.61.170.110]) by mail.gmx.com (mrgmx101) with ESMTPSA (Nemesis) id 0MTfZc-1V6nAw2eaO-00QR7R for ; Fri, 18 Oct 2013 15:06:50 +0200 Message-ID: <5261326A.80605@gmx.de> Date: Fri, 18 Oct 2013 15:06:50 +0200 From: olli hauer User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Thunderbird/24.0.1 MIME-Version: 1.0 To: Alex Dupre Subject: Re: svn commit: r330735 - in head/lang: php5 php5-extensions References: <201310181004.r9IA4ROr058624@svn.freebsd.org> <526116D5.2080101@FreeBSD.org> In-Reply-To: <526116D5.2080101@FreeBSD.org> X-Enigmail-Version: 1.5.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K0:oOK77GZBs2t9Rg/LJNinochnJOyog1620RFFnkn3KP1VWGd/SIu 06dvwxyQNkbcXRiublmffBDqWMi7KyY5u0wzfe8NvT9pcciW2u7LVATKl/SAfnK/O+EMlkV 1MGmQShDmSRQyJpUmzWPBzTtTQLnq5YgISqXf8Y8Pd2/q1vfTDXkK6/MmWoC41inOUtxtYh IwssGDJuFpUEHvyZ4xS7Q== Cc: Mathieu Arnold , svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, "O. Hartmann" , ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Oct 2013 13:06:52 -0000 On 2013-10-18 13:09, Alex Dupre wrote: > Mathieu Arnold ha scritto: >> | Log: >> | Update to 5.4.21 release and STAGify. >> >> Hum, >> >> http://pkg.absolight.net/logs/bulk/91amd64-pkgng/2013-10-18_12h33m08s/logs/errors/php5-5.4.21.log >> and same for php55 : >> http://pkg.absolight.net/logs/bulk/91amd64-pkgng/2013-10-18_12h33m08s/logs/errors/php55-5.5.5.log > > Thanks for reporting, I'll work on a fix for apxs and stagedir soon. > The following line in work/php-xx/Makefile is the culprit INSTALL_IT = $(mkinstalldirs) '$(INSTALL_ROOT)/usr/local/libexec/apache22' && \ $(mkinstalldirs) '$(INSTALL_ROOT)/usr/local/etc/apache22' && \ /usr/local/sbin/apxs -S LIBEXECDIR='$(INSTALL_ROOT)/usr/local/libexec/apache22' \ -S SYSCONFDIR='$(INSTALL_ROOT)/usr/local/etc/apache22' \ -i -a -n php5 libphp5.la ...^^^^^ ( -a/-A => create entry in httpd.conf) With staging the apxs parameter -a/-A cannot be used (create module entry in httpd.conf) The module entry can now be handled only with a post-install script or in pkg-plist. Quick fix for the php staging issue (only 'make stage' target tested) http://people.freebsd.org/~ohauer/diffs/stage/php5_stage.diff -- olli