From owner-svn-ports-all@FreeBSD.ORG Thu Jun 5 05:25:04 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4505A921; Thu, 5 Jun 2014 05:25:04 +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 32EEA2E97; Thu, 5 Jun 2014 05:25:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s555P4KI044192; Thu, 5 Jun 2014 05:25:04 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s555P4YB044191; Thu, 5 Jun 2014 05:25:04 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201406050525.s555P4YB044191@svn.freebsd.org> From: Martin Wilke Date: Thu, 5 Jun 2014 05:25:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356589 - head/www/phpgedview 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.18 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: Thu, 05 Jun 2014 05:25:04 -0000 Author: miwi Date: Thu Jun 5 05:25:03 2014 New Revision: 356589 URL: http://svnweb.freebsd.org/changeset/ports/356589 QAT: https://qat.redports.org/buildarchive/r356589/ Log: - Stage support PR: 190316 Modified: head/www/phpgedview/Makefile Modified: head/www/phpgedview/Makefile ============================================================================== --- head/www/phpgedview/Makefile Thu Jun 5 05:22:40 2014 (r356588) +++ head/www/phpgedview/Makefile Thu Jun 5 05:25:03 2014 (r356589) @@ -25,7 +25,6 @@ OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE OPTIONS_DEFAULT= SQLITE DB_DESC= Data storage -NO_STAGE= yes .include .if ${PORT_OPTIONS:MMYSQL} @@ -48,19 +47,10 @@ post-extract: .endfor do-install: - @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${WWWDIR} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}/index ${WWWDIR}/media - @${CHMOD} -R u+w ${WWWDIR}/index ${WWWDIR}/media + @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} + @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR}/index ${STAGEDIR}${WWWDIR}/media + @${CHMOD} -R u+w ${STAGEDIR}${WWWDIR}/index ${STAGEDIR}${WWWDIR}/media @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}/index ${WWWDIR}/media' >>${TMPPLIST} @${ECHO_CMD} '@exec ${CHMOD} -R u+w ${WWWDIR}/index ${WWWDIR}/media' >>${TMPPLIST} -post-install: -.for f in ${DISTATE} - @if [ ! -f ${WWWDIR}/${f} ]; then \ - ${CP} -p ${WWWDIR}/${f}-dist ${WWWDIR}/${f}; \ - ${CHMOD} a+w ${WWWDIR}/${f}; \ - fi -.endfor - @${CAT} ${PKGMESSAGE} - .include