From owner-svn-ports-all@FreeBSD.ORG Thu May 22 14:20:56 2014 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 ESMTPS id 7130AB9E; Thu, 22 May 2014 14:20:56 +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 5EC8C271F; Thu, 22 May 2014 14:20:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4MEKuNs081012; Thu, 22 May 2014 14:20:56 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4MEKu4F081011; Thu, 22 May 2014 14:20:56 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201405221420.s4MEKu4F081011@svn.freebsd.org> From: Martin Wilke Date: Thu, 22 May 2014 14:20:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r354850 - head/www/docebo 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, 22 May 2014 14:20:56 -0000 Author: miwi Date: Thu May 22 14:20:55 2014 New Revision: 354850 URL: http://svnweb.freebsd.org/changeset/ports/354850 QAT: https://qat.redports.org/buildarchive/r354850/ Log: - Stage support Modified: head/www/docebo/Makefile Modified: head/www/docebo/Makefile ============================================================================== --- head/www/docebo/Makefile Thu May 22 14:20:00 2014 (r354849) +++ head/www/docebo/Makefile Thu May 22 14:20:55 2014 (r354850) @@ -21,21 +21,20 @@ DO_FILES= config.php admin.php index.php DO_DIRS= doceboCms doceboCore doceboCrm doceboEcom doceboLms doceboScs \ files install readmelicense template upgrade xml_language -NO_STAGE= yes .include do-install: - @${INSTALL} -d ${WWWDIR} + @${INSTALL} -d ${STAGEDIR}${WWWDIR} .for i in ${DO_FILES} - @cd ${WRKDIR} && ${CP} ${i} ${WWWDIR}/ + @cd ${WRKDIR} && ${CP} ${i} ${STAGEDIR}${WWWDIR}/ .endfor .for i in ${DO_DIRS} - @cd ${WRKDIR} && ${COPYTREE_SHARE} ${i} ${WWWDIR}/ + @cd ${WRKDIR} && ${COPYTREE_SHARE} ${i} ${STAGEDIR}${WWWDIR}/ .endfor - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} - @${CHMOD} -R 755 ${WWWDIR} + @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR} + @${CHMOD} -R 755 ${STAGEDIR}${WWWDIR} post-install: @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}' \