From owner-svn-ports-head@FreeBSD.ORG Wed Nov 27 21:25:45 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3AC7FBDF; Wed, 27 Nov 2013 21:25:45 +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 2A86D2B7A; Wed, 27 Nov 2013 21:25:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rARLPW5C046194; Wed, 27 Nov 2013 21:25:32 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rARLPWsj046193; Wed, 27 Nov 2013 21:25:32 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201311272125.rARLPWsj046193@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 27 Nov 2013 21:25:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335062 - head/www/aria2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Nov 2013 21:25:45 -0000 Author: sunpoet Date: Wed Nov 27 21:25:32 2013 New Revision: 335062 URL: http://svnweb.freebsd.org/changeset/ports/335062 Log: - Use USES=compiler:c++11-lib - Mark broken for FreeBSD 8.x and 9.x without libc++ Modified: head/www/aria2/Makefile Modified: head/www/aria2/Makefile ============================================================================== --- head/www/aria2/Makefile Wed Nov 27 20:53:21 2013 (r335061) +++ head/www/aria2/Makefile Wed Nov 27 21:25:32 2013 (r335062) @@ -30,7 +30,7 @@ USE_CXXSTD= c++11 USE_GNOME= libxml2 USE_OPENSSL= yes USE_XZ= yes -USES= compiler:c++11-lang pathfix pkgconfig +USES= compiler:c++11-lib pathfix pkgconfig CA_BUNDLE_CONFIGURE_OFF=--without-ca-bundle CA_BUNDLE_CONFIGURE_ON= --with-ca-bundle=${LOCALBASE}/share/certs/ca-root-nss.crt @@ -46,6 +46,10 @@ ARIA2_DISK_CACHE?= 16M .include +.if ${OSVERSION} < 1000500 && !exists(/usr/lib/libc++.so) +BROKEN= Build with clang and libc++ only +.endif + .if ${ARCH} == "powerpc" && ${OSVERSION} > 900000 BROKEN= Does not install on powerpc-9 .endif