Summary: | [patch] Add staging support to www/formication | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | joe | ||||
Component: | Individual Port(s) | Assignee: | Steve Wills <swills> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | ||||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
joe
2014-05-21 01:40:01 UTC
Responsible Changed From-To: freebsd-ports-bugs->swills swills@ wants this submitter's PRs (via the GNATS Auto Assign Tool) Maintainer of www/formication, Please note that PR ports/190047 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/190047 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool) I approve the patch. Regards Michael Am 21.05.14 02:40, schrieb Edwin Groothuis: > Maintainer of www/formication, > > Please note that PR ports/190047 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/190047 > -- Mit freundlichen Grüßen Ing. Michael Ranner GSM: +43 676 4155044 Mail: michael.ranner@azedo.at WWW: http://www.azedo.at/ azedo IT Consulting & Services KG Heidenreichring 50b, 8054 Seiersberg, AUSTRIA GF Ing. Michael Ranner, FN 346263k Landesgericht ZRS Graz, UID ATU65864406 State Changed From-To: feedback->closed Committed. Thanks! Author: miwi Date: Sun May 25 05:29:24 2014 New Revision: 355126 URL: http://svnweb.freebsd.org/changeset/ports/355126 QAT: https://qat.redports.org/buildarchive/r355126/ Log: - Stage support PR: 190047 Submitted by: Joseph Benden <joe@thrallingpenguin.com> Approved by: maintainer Modified: head/www/formication/Makefile Modified: head/www/formication/Makefile ============================================================================== --- head/www/formication/Makefile Sun May 25 05:27:32 2014 (r355125) +++ head/www/formication/Makefile Sun May 25 05:29:24 2014 (r355126) @@ -21,7 +21,6 @@ PORTDOCS= BLURB COPYING feedback.fcn fee PLIST_FILES= www/cgi-bin/formication.pl SUB_FILES+= pkg-message -NO_STAGE= yes .include <bsd.port.pre.mk> PLIST_DIRSTRY= www/cgi-bin @@ -32,12 +31,12 @@ post-patch: ${WRKSRC}/formication.pl do-install: - @${MKDIR} ${PREFIX}/www/cgi-bin - @${INSTALL_DATA} ${WRKSRC}/formication.pl ${PREFIX}/www/cgi-bin + @${MKDIR} ${STAGEDIR}${PREFIX}/www/cgi-bin + @${INSTALL_DATA} ${WRKSRC}/formication.pl ${STAGEDIR}${PREFIX}/www/cgi-bin .if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR}/ + ${MKDIR} ${STAGEDIR}${DOCSDIR}/ . for i in ${PORTDOCS} - @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}/ + @${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}/ . endfor .endif _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" |