svn commit: r344987 - head/dns/ironsides

John Marino marino at FreeBSD.org
Wed Feb 19 02:22:41 UTC 2014


Author: marino
Date: Wed Feb 19 02:22:41 2014
New Revision: 344987
URL: http://svnweb.freebsd.org/changeset/ports/344987
QAT: https://qat.redports.org/buildarchive/r344987/

Log:
  dns/ironsides: Fix extraction problem on clean jail
  
  GNATMake was used to clean up the WRKSRC after extraction, but the
  problem is that it's not present at that point on a clean build; it
  comes in later as a build dependency.  Rather than a messy definition
  of extract-depends, just remove the files manually without gnatmake.

Modified:
  head/dns/ironsides/Makefile

Modified: head/dns/ironsides/Makefile
==============================================================================
--- head/dns/ironsides/Makefile	Wed Feb 19 02:19:43 2014	(r344986)
+++ head/dns/ironsides/Makefile	Wed Feb 19 02:22:41 2014	(r344987)
@@ -22,8 +22,7 @@ DOS2UNIX_FILES=	dfcs.usafa.edu.zonefile
 
 post-extract:
 	@${MV} ${WRKDIR}/trunk ${WRKSRC}
-	@(cd ${WRKSRC}; ${RM} *.bak *.bk.[0-9])
-	@(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} gnatclean -q spark_dns_main)
+	@(cd ${WRKSRC}; ${RM} *.bak *.bk.[0-9] *.o *.ali)
 	@${CP} ${FILESDIR}/ironsides.gpr ${FILESDIR}/Makefile ${WRKSRC}/
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list