Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 21 May 2014 00:33:13 GMT
From:      Joseph Benden <joe@thrallingpenguin.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/190048: [patch] Add staging support to www/flat-frog
Message-ID:  <201405210033.s4L0XDQq091041@cgiserv.freebsd.org>
Resent-Message-ID: <201405210040.s4L0e1UK045884@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         190048
>Category:       ports
>Synopsis:       [patch] Add staging support to www/flat-frog
>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:40:01 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/flat-frog.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

diff --git a/www/flat-frog/Makefile b/www/flat-frog/Makefile
index b3c334d..cf61182 100644
--- a/www/flat-frog/Makefile
+++ b/www/flat-frog/Makefile
@@ -13,17 +13,16 @@ NO_BUILD=	yes
 USE_PHP=	yes
 USES=		zip
 
-NO_STAGE=	yes
 do-install:
-	${MKDIR} ${DATADIR} ${DATADIR}/plugins
-	${INSTALL_DATA} ${WRKSRC}/src/class.* ${DATADIR}
-	${INSTALL_DATA} ${WRKSRC}/src/plugins/* ${DATADIR}/plugins
-	${MKDIR} ${EXAMPLESDIR} ${EXAMPLESDIR}/templates
-	${INSTALL_DATA} ${WRKSRC}/demo/test.* ${EXAMPLESDIR}
-	${INSTALL_DATA} ${WRKSRC}/demo/templates/* ${EXAMPLESDIR}/templates
+	${MKDIR} ${STAGEDIR}${DATADIR} ${STAGEDIR}${DATADIR}/plugins
+	${INSTALL_DATA} ${WRKSRC}/src/class.* ${STAGEDIR}${DATADIR}
+	${INSTALL_DATA} ${WRKSRC}/src/plugins/* ${STAGEDIR}${DATADIR}/plugins
+	${MKDIR} ${EXAMPLESDIR} ${STAGEDIR}${EXAMPLESDIR}/templates
+	${INSTALL_DATA} ${WRKSRC}/demo/test.* ${STAGEDIR}${EXAMPLESDIR}
+	${INSTALL_DATA} ${WRKSRC}/demo/templates/* ${STAGEDIR}${EXAMPLESDIR}/templates
 .if !defined(NOPORTDOCS)
-	${MKDIR} ${DOCSDIR}
-	${INSTALL_DATA} ${WRKSRC}/docs/* ${DOCSDIR}
+	${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/docs/* ${STAGEDIR}${DOCSDIR}
 .endif
 
 .include <bsd.port.mk>


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405210033.s4L0XDQq091041>