node and node-devel do not build with nondefault localbase, failing to find libexecinfo headers and libs. Build logs: http://people.freebsd.org/~amdmi3/node-0.8.18.log http://people.freebsd.org/~amdmi3/node-devel-0.9.8.log Attached patches fix the problem.
Maintainer of www/node, Please note that PR ports/175809 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/175809 -- 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)
Responsible Changed From-To: freebsd-ports-bugs->amdmi3 submitter is committer.
Author: amdmi3 Date: Tue Feb 26 16:17:49 2013 New Revision: 312989 URL: http://svnweb.freebsd.org/changeset/ports/312989 Log: - Fix build with nondefailt LOCALBASE PR: 175809 Submitted by: myself Approved by: maintainer timeout Modified: head/www/node/Makefile Modified: head/www/node/Makefile ============================================================================== --- head/www/node/Makefile Tue Feb 26 16:17:26 2013 (r312988) +++ head/www/node/Makefile Tue Feb 26 16:17:49 2013 (r312989) @@ -29,6 +29,9 @@ REINPLACE_ARGS= -i '' post-patch: @${RM} ${WRKSRC}/tools/wafadmin/Node.py.orig + @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \ + ${WRKSRC}/deps/v8/build/common.gypi \ + ${WRKSRC}/deps/v8/tools/gyp/v8.gyp post-install: ${MKDIR} ${PREFIX}/lib/node_modules/ _______________________________________________ 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"
Author: amdmi3 Date: Tue Feb 26 16:18:10 2013 New Revision: 312990 URL: http://svnweb.freebsd.org/changeset/ports/312990 Log: - Fix build with nondefailt LOCALBASE PR: 175809 Submitted by: myself Approved by: maintainer timeout Modified: head/www/node-devel/Makefile Modified: head/www/node-devel/Makefile ============================================================================== --- head/www/node-devel/Makefile Tue Feb 26 16:17:49 2013 (r312989) +++ head/www/node-devel/Makefile Tue Feb 26 16:18:10 2013 (r312990) @@ -27,6 +27,11 @@ CONFIGURE_ARGS= --prefix=${PREFIX_RELDES PREFIX_RELDEST= ${PREFIX:S,^${DESTDIR},,} REINPLACE_ARGS= -i '' +post-patch: + @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \ + ${WRKSRC}/deps/v8/build/common.gypi \ + ${WRKSRC}/deps/v8/tools/gyp/v8.gyp + post-install: ${MKDIR} ${PREFIX}/lib/node_modules/ ${TOUCH} ${PREFIX}/lib/node_modules/.keepme _______________________________________________ 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"
State Changed From-To: feedback->closed Committed. Thanks!