From owner-svn-ports-all@FreeBSD.ORG Fri May 15 10:54:00 2015 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.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AB169E76; Fri, 15 May 2015 10:54:00 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 80D8519F1; Fri, 15 May 2015 10:54:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4FAs0Uf066949; Fri, 15 May 2015 10:54:00 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4FAs03L066940; Fri, 15 May 2015 10:54:00 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201505151054.t4FAs03L066940@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Fri, 15 May 2015 10:54:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386398 - head/www/piwik 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.20 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, 15 May 2015 10:54:00 -0000 Author: bapt Date: Fri May 15 10:53:59 2015 New Revision: 386398 URL: https://svnweb.freebsd.org/changeset/ports/386398 Log: Use plist to set credentials instead of executing some post install install(1) or chown(8) Modified: head/www/piwik/Makefile head/www/piwik/pkg-plist Modified: head/www/piwik/Makefile ============================================================================== --- head/www/piwik/Makefile Fri May 15 10:45:25 2015 (r386397) +++ head/www/piwik/Makefile Fri May 15 10:53:59 2015 (r386398) @@ -3,6 +3,7 @@ PORTNAME= piwik PORTVERSION= 2.13.1 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://builds.piwik.org/ Modified: head/www/piwik/pkg-plist ============================================================================== --- head/www/piwik/pkg-plist Fri May 15 10:45:25 2015 (r386397) +++ head/www/piwik/pkg-plist Fri May 15 10:53:59 2015 (r386398) @@ -6,11 +6,11 @@ %%WWWDIR%%/bower.json %%WWWDIR%%/composer.json %%WWWDIR%%/composer.lock -%%WWWDIR%%/config/environment/dev.php -%%WWWDIR%%/config/environment/test.php -%%WWWDIR%%/config/global.ini.php -%%WWWDIR%%/config/global.php -%%WWWDIR%%/config/manifest.inc.php +@(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/config/environment/dev.php +@(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/config/environment/test.php +@(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/config/global.ini.php +@(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/config/global.php +@(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/config/manifest.inc.php %%WWWDIR%%/console %%WWWDIR%%/core/API/ApiRenderer.php %%WWWDIR%%/core/API/CORSHandler.php @@ -6803,6 +6803,5 @@ %%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenStream.php %%WWWDIR%%/vendor/twig/twig/phpunit.xml.dist @dir %%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Resources -@dir %%WWWDIR%%/tmp -@exec install -m 755 -o %%WWWOWN%% -g %%WWWGRP%% -d %D/%%WWWDIR%%/tmp -@exec chown -R %%WWWOWN%%:%%WWWGRP%% %D/%%WWWDIR%%/config +@dir(%%WWWOWN%%,%%WWWGRP%%,755) %%WWWDIR%%/tmp +@dir(%%WWWOWN%%,%%WWWGRP%%,) %%WWWDIR%%/config