Date: Sun, 18 May 2014 22:45:33 GMT From: Joseph Benden <joe@thrallingpenguin.com> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/189929: [patch] Add staging support to www/abyssws Message-ID: <201405182245.s4IMjXLJ052159@cgiserv.freebsd.org> Resent-Message-ID: <201405182250.s4IMo04C036214@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 189929 >Category: ports >Synopsis: [patch] Add staging support to www/abyssws >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: Sun May 18 22:50:00 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 and unbreak build for www/abyssws. >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/www/abyssws/Makefile b/www/abyssws/Makefile index 3b925d8..722e648 100644 --- a/www/abyssws/Makefile +++ b/www/abyssws/Makefile @@ -12,21 +12,22 @@ EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= Abyss Web Server is a compact and easy to use web server -BROKEN= Fails to install - -WRKSRC= ${WRKDIR}/abyssws -ONLY_FOR_ARCHS= i386 +WRKSRC= ${WRKDIR}/abyssws-${PORTVERSION} +ONLY_FOR_ARCHS= i386 amd64 NO_BUILD= yes USE_RC_SUBR= abyssws +USER= abyssws -NO_STAGE= yes .include <bsd.port.pre.mk> .if ${OSVERSION} >= 700043 LIB_DEPENDS+= c.6:${PORTSDIR}/misc/compat6x .endif +post-extract: + @${MV} ${WRKDIR}/abyssws ${WRKDIR}/abyssws-${PORTVERSION} + pre-install: @${SETENV} PKG_PREFIX=${PREFIX} \ ${SH} ${PKGINSTALL} ${PORTNAME} PRE-INSTALL @@ -36,17 +37,15 @@ pre-install: fi do-install: - @${INSTALL} -d ${PREFIX}/lib/abyssws - ${TAR} -C ${WRKSRC} -cf - . | ${TAR} -C ${PREFIX}/lib/abyssws -xf - - @ ${CHOWN} -R abyssws:abyssws ${PREFIX}/lib/abyssws/ - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}' >> ${TMPPLIST} - -post-install: - @if [ ! -f ${PREFIX}/lib/abyssws/htdocs/index.html ]; then \ - ${CP} -p ${PREFIX}/lib/abyssws/htdocs/index.html-dist \ - ${PREFIX}/lib/abyssws/htdocs/index.html ; \ + ${MKDIR} ${STAGEDIR}${PREFIX}/lib/abyssws + @${INSTALL} -d ${STAGEDIR}${PREFIX}/lib/abyssws + ${TAR} -C ${WRKSRC} -cf - . | ${TAR} -C ${STAGEDIR}${PREFIX}/lib/abyssws -xf - + ${CHOWN} -R abyssws:abyssws ${STAGEDIR}${PREFIX}/lib/abyssws + @${ECHO_CMD} "@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} lib/abyssws" >> ${TMPPLIST} + if [ ! -f ${STAGEDIR}${PREFIX}/lib/abyssws/htdocs/index.html ]; then \ + ${CP} -p ${STAGEDIR}${PREFIX}/lib/abyssws/htdocs/index.html-dist \ + ${STAGEDIR}${PREFIX}/lib/abyssws/htdocs/index.html ; \ + ${ECHO_CMD} "lib/abyssws/htdocs/index.html" >> ${TMPPLIST}; \ fi - @${SETENV} PKG_PREFIX=${PREFIX} \ - ${SH} ${PKGINSTALL} ${PORTNAME} POST-INSTALL .include <bsd.port.post.mk> >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405182245.s4IMjXLJ052159>