Date: Tue, 20 May 2014 23:59:31 GMT From: Joseph Benden <joe@thrallingpenguin.com> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/190043: [patch] Add staging support to www/efront Message-ID: <201405202359.s4KNxVRD040362@cgiserv.freebsd.org> Resent-Message-ID: <201405210000.s4L002qA023494@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 190043 >Category: ports >Synopsis: [patch] Add staging support to www/efront >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed May 21 00:00:02 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Joseph Benden >Release: FreeBSD 11 >Organization: >Environment: FreeBSD lucy 11.0-CURRENT FreeBSD 11.0-CURRENT #4 r264887: Thu Apr 24 12:43:46 MST 2014 root@lucy:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Adds staging support to www/efront. >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/www/efront/Makefile b/www/efront/Makefile index 1202ee1..5340973 100644 --- a/www/efront/Makefile +++ b/www/efront/Makefile @@ -21,19 +21,17 @@ EFRONT_DIRS= libraries PEAR \ NO_BUILD= yes SUB_FILES= pkg-message -NO_STAGE= yes .include <bsd.port.pre.mk> do-install: - @if [ ! -f ${WWWDIR} ]; then \ - ${MKDIR} ${WWWDIR} ; fi + ${MKDIR} ${STAGEDIR}${WWWDIR} .for i in ${EFRONT_FILES} - @cd ${WRKDIR} && ${CP} ${i} ${WWWDIR} + @cd ${WRKDIR} && ${CP} ${i} ${STAGEDIR}${WWWDIR} .endfor .for i in ${EFRONT_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}' \ >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405202359.s4KNxVRD040362>