svn commit: r413032 - in head: Mk/Uses devel/libspark2012 dns/ironsides
John Marino
marino at FreeBSD.org
Mon Apr 11 13:54:24 UTC 2016
Author: marino
Date: Mon Apr 11 13:54:22 2016
New Revision: 413032
URL: https://svnweb.freebsd.org/changeset/ports/413032
Log:
Restrict dns/ironsides to gcc5-aux only
Right now, ironsides emits a STORAGE ERROR during building with
lang/gcc6-aux. It's unclear if the problem lies with compiler or with
ironsides. For now, limit building it with gcc5-aux (the default).
The USES=ada:5 setting wasn't supported, but it should have been. This
has also been fixed.
Modified:
head/Mk/Uses/ada.mk
head/devel/libspark2012/Makefile
head/dns/ironsides/Makefile
Modified: head/Mk/Uses/ada.mk
==============================================================================
--- head/Mk/Uses/ada.mk Mon Apr 11 13:33:20 2016 (r413031)
+++ head/Mk/Uses/ada.mk Mon Apr 11 13:54:22 2016 (r413032)
@@ -18,6 +18,8 @@ ADAXX= gcc5 # framework default
. if ${ada_ARGS:M49}
ADAXX= gcc
+. elif ${ada_ARGS:M5}
+ADAXX= gcc5
. elif ${ada_ARGS:M6}
ADAXX= gcc6
. elif defined(ADA_DEFAULT)
Modified: head/devel/libspark2012/Makefile
==============================================================================
--- head/devel/libspark2012/Makefile Mon Apr 11 13:33:20 2016 (r413031)
+++ head/devel/libspark2012/Makefile Mon Apr 11 13:54:22 2016 (r413032)
@@ -12,6 +12,6 @@ COMMENT= SPARK 2012 Spark.Ada library
LICENSE= GPLv3
-USES= ada tar:bzip2
+USES= ada:5 tar:bzip2
.include <bsd.port.mk>
Modified: head/dns/ironsides/Makefile
==============================================================================
--- head/dns/ironsides/Makefile Mon Apr 11 13:33:20 2016 (r413031)
+++ head/dns/ironsides/Makefile Mon Apr 11 13:54:22 2016 (r413032)
@@ -17,7 +17,7 @@ LICENSE_PERMS= dist-mirror dist-sell pkg
BUILD_DEPENDS= ${LOCALBASE}/include/spark2012/spark.ads:devel/libspark2012
-USES= ada dos2unix zip
+USES= ada:5 dos2unix zip
DOS2UNIX_FILES= dfcs.usafa.edu.zonefile ironsides.1
SNAPSHOT= 2015_04_15
WRKSRC= ${WRKDIR}/${DISTFILES:S/.zip//}
More information about the svn-ports-all
mailing list