Bug 183066 - security/libgcrypt builds on powerpc
Summary: security/libgcrypt builds on powerpc
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Kubilay Kocak
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-10-17 18:40 UTC by Justin Hibbits
Modified: 2013-12-14 05:10 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Justin Hibbits freebsd_committer freebsd_triage 2013-10-17 18:40:00 UTC
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.
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-10-17 18:40:07 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2013-10-17 18:40:07 UTC
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
Comment 3 Kubilay Kocak freebsd_committer freebsd_triage 2013-12-14 02:20:47 UTC
Responsible Changed
From-To: freebsd-ports-bugs->koobs

I'll take it (maintainer timeout, 1 month)
Comment 4 dfilter service freebsd_committer freebsd_triage 2013-12-14 05:06:24 UTC
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"
Comment 5 Kubilay Kocak freebsd_committer freebsd_triage 2013-12-14 05:08:06 UTC
State Changed
From-To: feedback->closed

Committed, with additional changes. Thanks Justin!