From owner-svn-ports-all@FreeBSD.ORG Thu Feb 27 13:47:48 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A0D03F3; Thu, 27 Feb 2014 13:47:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8D7DC1A36; Thu, 27 Feb 2014 13:47:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1RDlmJk073147; Thu, 27 Feb 2014 13:47:48 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1RDlmWR073146; Thu, 27 Feb 2014 13:47:48 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201402271347.s1RDlmWR073146@svn.freebsd.org> From: John Marino Date: Thu, 27 Feb 2014 13:47:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346331 - head/net/anet X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 13:47:48 -0000 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