svn commit: r346331 - head/net/anet

John Marino marino at FreeBSD.org
Thu Feb 27 13:47:48 UTC 2014


Author: marino
Date: Thu Feb 27 13:47:48 2014
New Revision: 346331
URL: http://svnweb.freebsd.org/changeset/ports/346331
QAT: https://qat.redports.org/buildarchive/r346331/

Log:
  net/anet: Fix properly
  
  The problem with ahven was caused by a typo in the build targets.
  The target "build_lib" was desired, but "build_all" was defined.
  Fix target and return ahven to an optional dependency.
  Tested in Reports, 8x pass

Modified:
  head/net/anet/Makefile

Modified: head/net/anet/Makefile
==============================================================================
--- head/net/anet/Makefile	Thu Feb 27 13:43:27 2014	(r346330)
+++ head/net/anet/Makefile	Thu Feb 27 13:47:48 2014	(r346331)
@@ -3,6 +3,7 @@
 
 PORTNAME=	anet
 PORTVERSION=	0.2.3
+PORTREVISION=	1
 CATEGORIES=	net
 MASTER_SITES=	http://www.codelabs.ch/download/
 DISTNAME=	libanet-${PORTVERSION}
@@ -15,7 +16,7 @@ LICENSE_COMB=	multi
 
 USES=		ada
 USE_BZIP2=	yes
-ALL_TARGET=	build_all
+ALL_TARGET=	build_lib
 MAKE_ARGS+=	NUM_CPUS=${MAKE_JOBS_NUMBER} \
 		LIBRARY_KIND=static
 
@@ -28,8 +29,8 @@ TEST_DESC=	Run unit test suite before in
 IGNORE=		will not build; atomics are not supported on DF i386
 .endif
 
-BUILD_DEPENDS+=	${LOCALBASE}/lib/gnat/ahven.gpr:${PORTSDIR}/devel/ahven
 .if ${PORT_OPTIONS:MTEST}
+BUILD_DEPENDS+=	${LOCALBASE}/lib/gnat/ahven.gpr:${PORTSDIR}/devel/ahven
 ALL_TARGET+=	tests
 .endif
 


More information about the svn-ports-all mailing list