From owner-svn-ports-head@freebsd.org Wed Sep 30 19:11:46 2015 Return-Path: Delivered-To: svn-ports-head@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 B18E5A0BECB; Wed, 30 Sep 2015 19:11:46 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.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 87C7D1C2C; Wed, 30 Sep 2015 19:11:46 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8UJBkO6049928; Wed, 30 Sep 2015 19:11:46 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8UJBkSc049926; Wed, 30 Sep 2015 19:11:46 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201509301911.t8UJBkSc049926@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 30 Sep 2015 19:11:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398233 - head/net-mgmt/rackmonkey X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 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: Wed, 30 Sep 2015 19:11:46 -0000 Author: amdmi3 Date: Wed Sep 30 19:11:45 2015 New Revision: 398233 URL: https://svnweb.freebsd.org/changeset/ports/398233 Log: - Fix build from non-root, move perm handling to plist Approved by: portmgr blanket Modified: head/net-mgmt/rackmonkey/Makefile head/net-mgmt/rackmonkey/pkg-plist Modified: head/net-mgmt/rackmonkey/Makefile ============================================================================== --- head/net-mgmt/rackmonkey/Makefile Wed Sep 30 18:58:23 2015 (r398232) +++ head/net-mgmt/rackmonkey/Makefile Wed Sep 30 19:11:45 2015 (r398233) @@ -93,6 +93,5 @@ do-install: ${WRKDIR}/build_conf/rackmonkey.conf cd ${WRKSRC} && ${COPYTREE_SHARE} sql ${STAGEDIR}${WWWDIR}/ cd ${WRKSRC} && ${COPYTREE_SHARE} doc ${STAGEDIR}${WWWDIR}/ - ${CHOWN} -R 80:80 ${STAGEDIR}${WWWDIR} .include Modified: head/net-mgmt/rackmonkey/pkg-plist ============================================================================== --- head/net-mgmt/rackmonkey/pkg-plist Wed Sep 30 18:58:23 2015 (r398232) +++ head/net-mgmt/rackmonkey/pkg-plist Wed Sep 30 19:11:45 2015 (r398233) @@ -1,3 +1,5 @@ +@owner www +@group www %%WWWDIR%%/rackmonkey.pl %%INIT_DB%%%%WWWDIR%%/rackmonkey.db %%WWWDIR%%/rack2xls.pl @@ -128,18 +130,20 @@ %%WWWDIR%%/doc/upgrade.txt @unexec if cmp -s %D/%%WWWDIR%%/rackmonkey.conf-default %D/%%WWWDIR%%/rackmonkey.conf; then rm -f %D/%%WWWDIR%%/rackmonkey.conf; fi @exec if [ ! -f %D/%%WWWDIR%%/rackmonkey.conf ] ; then cp -p %D/%F %B/%%WWWDIR%%/rackmonkey.conf; fi -@dirrmtry %%WWWDIR%%/graphics/help -@dirrmtry %%WWWDIR%%/graphics/icons -@dirrmtry %%WWWDIR%%/graphics -@dirrmtry %%WWWDIR%%/javascript -@dirrmtry %%WWWDIR%%/styles -@dirrmtry %%WWWDIR%%/tmpl -@dirrmtry %%WWWDIR%%/RackMonkey -@dirrmtry %%WWWDIR%%/sql/data -@dirrmtry %%WWWDIR%%/sql/migration/3 -@dirrmtry %%WWWDIR%%/sql/migration/4 -@dirrmtry %%WWWDIR%%/sql/migration -@dirrmtry %%WWWDIR%%/sql/schema -@dirrmtry %%WWWDIR%%/sql -@dirrmtry %%WWWDIR%%/doc -@dirrmtry %%WWWDIR%%/ +@dir %%WWWDIR%%/graphics/help +@dir %%WWWDIR%%/graphics/icons +@dir %%WWWDIR%%/graphics +@dir %%WWWDIR%%/javascript +@dir %%WWWDIR%%/styles +@dir %%WWWDIR%%/tmpl +@dir %%WWWDIR%%/RackMonkey +@dir %%WWWDIR%%/sql/data +@dir %%WWWDIR%%/sql/migration/3 +@dir %%WWWDIR%%/sql/migration/4 +@dir %%WWWDIR%%/sql/migration +@dir %%WWWDIR%%/sql/schema +@dir %%WWWDIR%%/sql +@dir %%WWWDIR%%/doc +@dir %%WWWDIR%%/ +@owner +@group