security/libgcrypt was excluded for powerpc/10-CURRENT early on due to a build failure (ports/166388). It builds fine for the last year or more. Fix: Remove the BROKEN line in the Makefile.
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Maintainer of security/libgcrypt, Please note that PR ports/183066 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/183066 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org
Responsible Changed From-To: freebsd-ports-bugs->koobs I'll take it (maintainer timeout, 1 month)
Author: koobs Date: Sat Dec 14 05:06:17 2013 New Revision: 336421 URL: http://svnweb.freebsd.org/changeset/ports/336421 Log: security/libgcrypt: Remove BROKEN on powerpc - Remove BROKEN on powerpc [1] - Enable STAGE support PR: ports/183066 Submitted by: jhibbits Approved by: maintainer timeout (1 month) Modified: head/security/libgcrypt/Makefile Modified: head/security/libgcrypt/Makefile ============================================================================== --- head/security/libgcrypt/Makefile Sat Dec 14 04:47:22 2013 (r336420) +++ head/security/libgcrypt/Makefile Sat Dec 14 05:06:17 2013 (r336421) @@ -28,14 +28,10 @@ DOCS= AUTHORS ChangeLog ChangeLog-2011 INFO= gcrypt PORTDOCS= * -NO_STAGE= yes .include <bsd.port.pre.mk> .if ${ARCH} == "powerpc" CONFIGURE_ARGS+= --disable-asm -.if (${OSVERSION} >= 1000000) -BROKEN= will not compile. See pr ports/166388 -.endif .elif ${ARCH} == "armv6" USE_GCC=4.2+ @@ -58,8 +54,8 @@ pre-configure: .if ${PORT_OPTIONS:MDOCS} post-install: - @${MKDIR} ${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR} .endif regression-test: build _______________________________________________ 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, with additional changes. Thanks Justin!